diff --git a/README.md b/README.md index 32002d7..2bac5cb 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,161 @@ Ballerina Microsoft Excel Connector [![GraalVM Check](https://github.com/ballerina-platform/module-ballerinax-microsoft.excel/actions/workflows/build-with-bal-test-native.yml/badge.svg)](https://github.com/ballerina-platform/module-ballerinax-microsoft.excel/actions/workflows/build-with-bal-test-native.yml) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) -[Microsoft Excel](https://www.microsoft.com/en-ww/microsoft-365/excel) is a spreadsheet application developed by Microsoft in Microsoft Office 365. +[Excel](https://www.microsoft.com/en-ww/microsoft-365/excel) is a widely used spreadsheet application developed by Microsoft, enabling users to organize, analyze, and visualize data in a tabular format. -This connector provides operations for connecting and interacting with Microsoft Graph API Excel endpoints over the network. -For more information about configuration and operations, go to the module. -- [`microsoft.excel`](excel/Module.md) - Perform CRUD operations in Microsoft Excel worksheet table, and chart. +The `ballerinax/microsoft.excel` package offers APIs to connect and interact with [Microsoft Graph](https://learn.microsoft.com/en-us/graph/api/resources/excel?view=graph-rest-1.0 ) to allow web and mobile applications to read and modify Excel workbooks stored in OneDrive for Business, SharePoint site or Group drive. + +## Set up Excel API + +To use the Excel connector, You have to use the [Microsoft identity platform](https://learn.microsoft.com/en-us/entra/identity-platform/) to authenticate Excel APIs. If you do not have a valid Microsoft Azure AD account, you can sign up for one through the [Azure Portal](https://portal.azure.com/). + +### Step 1: Register your app in Azure Active Directory (Azure AD) + +1. Go to the [Azure portal](https://portal.azure.com/) and sign in with a global administrator account. + +2. Select **Microsoft Entra ID** from the left-hand navigation menu. + +3. Select **App registrations** from the **Manage** section of the left-hand navigation menu. + +4. Select **New registration**. + +5. In the Register an application page, enter a name for your app. + +6. Select the **supported account types** is **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant)** . + +7. Select the **Web application** type and enter the URL under the **Redirect URI**. + +8. Click on **Register**. + + ![Register App](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-microsoft.excel/master/docs/setup/resources/register_app.png) + +### Step 2: Configure app permissions + +1. In the left pane, select **App registrations**. + +2. Go to the **Owned applications** and select the app you registered in Step 1. + +3. In the Manage section, select **API permissions**. + +4. Click on **Add a permission**. + +5. Select **Microsoft Graph**. + +6. Select the **Delegated permissions scope**. + +7. Click on **Add permissions**. + + ![Add App Permissions](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-microsoft.excel/master/docs/setup/resources/add_app_permission.png) + +### Step 3: Create a client secret + +1. In the left pane, select **App registrations**. +2. Go to the **Owned applications** and select the app you registered in Step 1. +3. In the Manage section, select **Certificates & secrets**. +4. Click on **New client secret**. +5. Enter a **Description** for the client secret and select the **Expires** time period according to your purpose. +6. Click on **Add**. +7. Copy the **value** of the client secret. You will need this value later. + + ![Create Client Secret](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-microsoft.excel/master/docs/setup/resources/create_client_secrets.png) + +### Step 4: Get the renew refresh token + +Use the following table to change the value of the fields in the sections below: + + | Field | Values of your app | + |------------------------------------------------------------| -------------------- | + | Tenant ID | Directory (tenant) ID | + | Name | Application (client) | + | Authorized Redirect URIs | Redirect URI eg:http%3a%2f%2flocalhost%3a8080 | + | Scope | Delegated permissions scope eg: Files.Read Files.ReadWrite | + + ![Details of App](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-microsoft.excel/master/docs/setup/resources/deatils_of_app.png) + +#### Get an authorization code + +Open a new tab in your browser and enter the following URL after replacing the values of the query parameters with the values of your application. + ``` + https://login.microsoftonline.com/{Tenant ID}/oauth2/v2.0/authorize?client_id={AppReg ID} + &response_type=code + &redirect_uri={Redirect URI} + &response_mode=query + &scope={SCOPE}&sso_reload=true + ``` +#### Get a refresh token + +After replacing the values of the query parameters with the values of your application, open a terminal and enter the following curl command. + +``` + curl -X POST -H "Content-Type: application/x-www-form-urlencoded" -d 'client_id={AppReg ID} + &scope={SCOPE} openid profile offline_access + &code={authorization code} + &redirect_uri={Redirect URI} + &grant_type=authorization_code + &client_secret={AppReg Secret}' 'https://login.microsoftonline.com/{Tenant ID}/oauth2/v2.0/token' +``` + +#### Get a refresh token to renew an expired access token + +Using the following cul command, you can get a refresh token to renew an expired access token. + +``` + curl --location --request POST 'https://login.microsoftonline.com/{Tenant ID}/oauth2/v2.0/token' \ + --header 'Content-Type: application/x-www-form-urlencoded' \ + --data-urlencode 'client_id={AppReg ID}' \ + --data-urlencode 'scope={SCOPE}' \ + --data-urlencode 'refresh_token={Refresh token} \ + --data-urlencode 'grant_type=refresh_token' \ + --data-urlencode 'client_secret={AppReg Secret}' +``` + +## Quickstart + +To use the `excel` connector in your Ballerina application, modify the `.bal` file as follows: + +### Step 1: Import the connector + +Import the `ballerinax/microsoft.excel` package into your Ballerina project. + +```ballerina +import ballerinax/microsoft.excel; +``` + +### Step 2: Instantiate a new connector + +Create a `excel:ConnectionConfig` with the obtained OAuth2.0 tokens and initialize the connector with it. + +```ballerina +excel:Client excelClient = check new excel:Client( + config = { + auth: { + clientId: "", + clientSecret: "", + refreshToken: "", + refreshUrl: "" + } + } +); +``` + +### Step 3: Invoke the connector operation + +Now, utilize the available connector operations. + +#### Add worksheet + +```ballerina +excel:Worksheet|error response = excelClient->createWorksheet(workBookId, {name: "test"}); +``` + +#### Get Worksheet + +```ballerina +excel:Worksheet|error response = excelClient->getWorksheet(itemId, workBookId, worksheetName); +``` ## Building from the source + ### Setting up the prerequisites 1. Download and install Java SE Development Kit (JDK) version 11. You can install either [OpenJDK](https://adoptopenjdk.net/) or [Oracle JDK](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html). diff --git a/ballerina/client.bal b/ballerina/client.bal index 3c3a77c..2bd3b35 100644 --- a/ballerina/client.bal +++ b/ballerina/client.bal @@ -1,723 +1,2473 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. +// AUTO-GENERATED FILE. DO NOT MODIFY. +// This file is auto-generated by the Ballerina OpenAPI tool. import ballerina/http; -import ballerinax/'client.config; -# Ballerina Microsoft Excel connector provides the capability to access Microsoft Graph Excel API -# It provides capability to perform perform CRUD (Create, Read, Update, and Delete) operations on -# [Excel workbooks](https://docs.microsoft.com/en-us/graph/api/resources/excel?view=graph-rest-1.0) stored in -# Microsoft OneDrive. If you have more than one call to make within a certain period of time, Microsoft recommends to -# create a session and pass the session ID with each request. By default, this connector uses sessionless. -@display {label: "Microsoft Excel", iconPath: "icon.png"} +# This OData service is located at https://graph.microsoft.com/v1.0 public isolated client class Client { - private final http:Client excelClient; - - # Initializes the connector. During initialization you can pass either http:BearerTokenConfig if you have a bearer - # token or http:OAuth2RefreshTokenGrantConfig if you have OAuth tokens. - # Create a Microsoft account and obtain tokens following - # [this guide](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols) - # - # + configuration - Configurations required to initialize the client - # + return - An error on failure of initialization or else `()` - public isolated function init(ConnectionConfig config) returns error? { - http:ClientConfiguration httpClientConfig = check config:constructHTTPClientConfig(config); - self.excelClient = check new (BASE_URL, httpClientConfig); + final http:Client clientEp; + # Gets invoked to initialize the `connector`. + # + # + config - The configurations to be used when initializing the `connector` + # + serviceUrl - URL of the target service + # + return - An error if connector initialization failed + public isolated function init(ConnectionConfig config, string serviceUrl = "https://graph.microsoft.com/v1.0") returns error? { + http:ClientConfiguration httpClientConfig = {auth: config.auth, httpVersion: config.httpVersion, timeout: config.timeout, forwarded: config.forwarded, poolConfig: config.poolConfig, compression: config.compression, circuitBreaker: config.circuitBreaker, retryConfig: config.retryConfig, validation: config.validation}; + do { + if config.http1Settings is ClientHttp1Settings { + ClientHttp1Settings settings = check config.http1Settings.ensureType(ClientHttp1Settings); + httpClientConfig.http1Settings = {...settings}; + } + if config.http2Settings is http:ClientHttp2Settings { + httpClientConfig.http2Settings = check config.http2Settings.ensureType(http:ClientHttp2Settings); + } + if config.cache is http:CacheConfig { + httpClientConfig.cache = check config.cache.ensureType(http:CacheConfig); + } + if config.responseLimits is http:ResponseLimitConfigs { + httpClientConfig.responseLimits = check config.responseLimits.ensureType(http:ResponseLimitConfigs); + } + if config.secureSocket is http:ClientSecureSocket { + httpClientConfig.secureSocket = check config.secureSocket.ensureType(http:ClientSecureSocket); + } + if config.proxy is http:ProxyConfig { + httpClientConfig.proxy = check config.proxy.ensureType(http:ProxyConfig); + } + } + http:Client httpEp = check new (serviceUrl, httpClientConfig); + self.clientEp = httpEp; + return; } - - # Creates a session. - # Excel APIs supports two types of sessions - # Persistent session - All changes made to the workbook are persisted (saved). This is the most efficient and - # performant mode of operation. - # Non-persistent session - Changes made by the API are not saved to the source location. Instead, the Excel backend - # server keeps a temporary copy of the file that reflects the changes made during that particular API session. - # When the Excel session expires, the changes are lost. This mode is useful for apps that need to do analysis or - # obtain the results of a calculation or a chart image, but not affect the document state. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + persistChanges - All changes made to the workbook are persisted or not? - # + return - Session ID or error - @display {label: "Creates Session"} - remote isolated function createSession(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Persistent Session"} boolean persistChanges = true) - returns @display {label: "Session ID"} string|error { - string path = check createRequestPath([CREATE_SESSION], workbookIdOrPath); - json payload = {persistChanges: persistChanges}; - record {string id;} response = check self.excelClient->post(path, payload); - return response.id; + # Gets the smallest range that encompasses the given ranges. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + anotherRange - Usage: anotherRange={anotherRange} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeBoundingRect(string workbookId, string workbookNamedItemId, string anotherRange, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/boundingRect(anotherRange=${getEncodedUri(anotherRange)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Adds a new worksheet to the workbook. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetName - The name of the worksheet to be added. If specified, name should be unqiue. If not specified, - # Excel determines the name of the new worksheet - # + sessionId - Session ID - # + return - `Worksheet` record or else an `error` if failed - @display {label: "Add Worksheet"} - remote isolated function addWorksheet(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name"} string? worksheetName = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Worksheet|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, ADD], workbookIdOrPath, - sessionId); - json payload = {name: worksheetName}; - return check self.excelClient->post(path, payload, headers, targetType = Worksheet); + # Gets the smallest range that encompasses the given ranges. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + anotherRange - Usage: anotherRange={anotherRange} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeBoundingRect(string workbookId, string workbookWorksheetId, string address, string anotherRange, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/boundingRect(anotherRange=${getEncodedUri(anotherRange)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Retrieves the properties of a worksheet. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + sessionId - Session ID - # + return - `Worksheet` record or else an `error` if failed - @display {label: "Get Worksheet"} - remote isolated function getWorksheet(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Session ID"} string? sessionId = ()) - returns Worksheet|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId], - workbookIdOrPath, sessionId); - return check self.excelClient->get(path, headers, targetType = Worksheet); + # Gets the smallest range that encompasses the given ranges. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + anotherRange - Usage: anotherRange={anotherRange} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeBoundingRect(string workbookId, string workbookTableId, string workbookTableColumnId, string anotherRange, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/boundingRect(anotherRange=${getEncodedUri(anotherRange)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Retrieves a list of worksheets. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Worksheet` record list or else an `error` if failed - @display {label: "List Worksheets"} - remote isolated function listWorksheets(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns @display {label: "Worksheet List"} Worksheet[]|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS], workbookIdOrPath, - sessionId, query); - http:Response response = check self.excelClient->get(path, headers); - return getWorksheetArray(response); + # Gets the range containing the single cell based on row and column numbers. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + row - Usage: row={row} + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeCell(string workbookId, string workbookNamedItemId, int row, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/cell(row=${getEncodedUri(row)},column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Update the properties of worksheet. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + worksheet - 'Worksheet' record contains values for relevant fields that should be updated - # + sessionId - Session ID - # + return - `Worksheet` record or else an `error` if failed - @display {label: "Update Worksheet"} - remote isolated function updateWorksheet(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Values need to be Updated"} Worksheet worksheet, - @display {label: "Session ID"} string? sessionId = ()) - returns Worksheet|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId], - workbookIdOrPath, sessionId); - json payload = check worksheet.cloneWithType(json); - return check self.excelClient->patch(path, payload, headers, targetType = Worksheet); + # Gets the range object containing the single cell based on row and column numbers. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + row - Usage: row={row} + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeCell(string workbookId, string workbookWorksheetId, string address, int row, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/cell(row=${getEncodedUri(row)},column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - # Gets the range object containing the single cell based on row and column numbers. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + row - number of the cell to be retrieved. Zero-indexed - # + column - Column number of the cell to be retrieved. Zero-indexed - # + sessionId - Session ID - # + return - `Cell` record or else an `error` if failed - @display {label: "Get Cell"} - remote isolated function getCell(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Row Number"} int row, - @display {label: "Column Number"} int column, - @display {label: "Session ID"} string? sessionId = ()) returns Cell|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, CELL - + OPEN_ROUND_BRACKET + ROW + EQUAL_SIGN + row.toString() + COMMA + COLUMN + EQUAL_SIGN + column.toString() - + CLOSE_ROUND_BRACKET], workbookIdOrPath, sessionId); - return check self.excelClient->get(path, headers, targetType = Cell); + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + row - Usage: row={row} + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeCell(string workbookId, string workbookTableId, string workbookTableColumnId, int row, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/cell(row=${getEncodedUri(row)},column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Deletes the worksheet from the workbook. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Delete Worksheet"} - remote isolated function deleteWorksheet(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Session ID"} string? sessionId = ()) - returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId], - workbookIdOrPath, sessionId); - http:Response response = check self.excelClient->delete(path, headers = headers); - _ = check handleResponse(response); + # Clear range values such as format, fill, and border. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function clearWorkbookNamedItemRange(string workbookId, string workbookNamedItemId, ApplyTo payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/clear`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Creates a new table. + # Clear range values such as format, fill, and border. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + address - Range address or name of the range object representing the data source - # + hasHeaders - Boolean value that indicates whether the data being imported has column labels. If the source does - # not contain headers (i.e,. when this property set to false), Excel will automatically generate - # header shifting the data down by one row - # + sessionId - Session ID - # + return - `Table` record or else an `error` if failed - @display {label: "Add Table"} - remote isolated function addTable(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Range Address"} string address, - @display {label: "Has Column Labels?"} boolean? hasHeaders = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Table|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, ADD], workbookIdOrPath, sessionId); - json payload = {address: address, hasHeaders: hasHeaders}; - return check self.excelClient->post(path, payload, headers, targetType = Table); + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function clearWorksheetRange(string workbookId, string workbookWorksheetId, string address, ApplyTo payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/clear`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Retrieves the properties of table. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Table` record or else an `error` if failed - @display {label: "Get Table"} - remote isolated function getTable(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Table|error { - [string, map?] [path, headers] = check createRequestParams([TABLES, tableNameOrId], - workbookIdOrPath, sessionId, query); - return check self.excelClient->get(path, headers, targetType = Table); + # Clear range values such as format, fill, and border. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function clearWorkbookTableColumnRange(string workbookId, string workbookTableId, string workbookTableColumnId, ApplyTo payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/clear`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Retrieves a list of tables. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Table` record list or else an `error` if failed - @display {label: "List Tables"} - remote isolated function listTables(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string? worksheetNameOrId = (), - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns @display {label: "Table List"} Table[]|error { - [string, map?] [path, headers] = worksheetNameOrId is string ? check createRequestParams( - [WORKSHEETS, worksheetNameOrId, TABLES], workbookIdOrPath, query) : check createRequestParams([TABLES], - workbookIdOrPath, sessionId, query); - http:Response response = check self.excelClient->get(path, headers); - return getTableArray(response); + # Gets a column contained in the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeColumn(string workbookId, string workbookNamedItemId, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/column(column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Updates the properties of a table. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + 'table - `Table` record contains the values for relevant fields that should be updated - # + sessionId - Session ID - # + return - `Table` record or else an `error` if failed - @display {label: "Update Table"} - remote isolated function updateTable(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Values need to be Updated"} Table 'table, - @display {label: "Session ID"} string? sessionId = ()) - returns Table|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId], workbookIdOrPath, sessionId); - json payload = check 'table.cloneWithType(json); - return check self.excelClient->patch(path, payload, headers, targetType = Table); + # Gets a column contained in the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkseetRangeColumn(string workbookId, string workbookWorksheetId, string address, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/column(column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Adds rows to the end of the table. Note that the API can accept multiple rows data using this operation. Adding - # one row at a time could lead to performance degradation. The recommended approach would be to batch the rows - # together in a single call rather than doing single row insertion. For best results, collect the rows to be - # inserted on the application side and perform single rows add operation. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + values - A 2-dimensional array of unformatted values of the table rows (boolean or string or number). - # + index - Specifies the relative position of the new row. If null, the addition happens at the end. Any rows below - # the inserted row are shifted downwards. Zero-indexed - # + sessionId - Session ID - # + return - `Row` record or else an `error` if failed - @display {label: "Create Row"} - remote isolated function createRow(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Values"} json values, - @display {label: "Index"} int? index = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Row|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, ROWS, ADD], workbookIdOrPath, sessionId); - json payload = {values: values, index: index}; - return check self.excelClient->post(path, payload, headers, targetType = Row); + # Gets a column contained in the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeColumn(string workbookId, string workbookTableId, string workbookTableColumnId, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/column(column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Retrieves a list of table rows. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Row` record list or else an `error` if failed - @display {label: "List Rows"} - remote isolated function listRows(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns @display {label: "Row List"} Row[]|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, ROWS], workbookIdOrPath, sessionId, query); - http:Response response = check self.excelClient->get(path, headers); - return getRowArray(response); + # Gets a certain number of columns to the right of the given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetColumnsAfterRange(string workbookId, string workbookWorksheetId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/columnsAfter`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Updates the properties of a row. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + index - The index number of the row within the rows collection of the table - # + values - A 2-dimensional array of unformatted values of the table rows (boolean or string or number). Provide - # values for relevant fields that should be updated. Existing properties that are not included in the request will - # maintain their previous values or be recalculated based on changes to other property values. For best performance - # you shouldn't include existing values that haven't changed - # + sessionId - Session ID - # + return - `Row` record or else an `error` if failed - @display {label: "Update Row"} - remote isolated function updateRow(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Index"} int index, - @display {label: "Values"} json[][] values, - @display {label: "Session ID"} string? sessionId = ()) - returns Row|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, ROWS, ITEM_AT + OPEN_ROUND_BRACKET + INDEX + EQUAL_SIGN + index.toString() + - CLOSE_ROUND_BRACKET], workbookIdOrPath, sessionId); - json payload = {values: values}; - return check self.excelClient->patch(path, payload, headers, targetType = Row); + # Gets a certain number of columns to the right of the given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + count - Usage: count={count} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetColumnsAfterRangeWithCount(string workbookId, string workbookWorksheetId, int count, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/columnsAfter(count=${getEncodedUri(count)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Deletes the row from the table. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + index - Row index - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Delete Row"} - remote isolated function deleteRow(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Index"} int index, - @display {label: "Session ID"} string? sessionId = ()) returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, ROWS, ITEM_AT + OPEN_ROUND_BRACKET + INDEX + EQUAL_SIGN + index.toString() + - CLOSE_ROUND_BRACKET], workbookIdOrPath, sessionId); - http:Response response = check self.excelClient->delete(path, headers = headers); - _ = check handleResponse(response); + # Gets a certain number of columns to the left of the given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetColumnsBeforeRange(string workbookId, string workbookWorksheetId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/columnsBefore`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Creates a new table column. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + values - A 2-dimensional array of unformatted values of the table columns (boolean or string or number). - # + index - The index number of the column within the columns collection of the table - # + sessionId - Session ID - # + return - `Column` record or else an `error` if failed - @display {label: "Create Column"} - remote isolated function createColumn(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Values"} json values, - @display {label: "Index"} int? index = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Column|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, COLUMNS, ADD], workbookIdOrPath, sessionId); - json payload = {values: values, index: index}; - return check self.excelClient->post(path, payload, headers, targetType = Column); + # Gets a certain number of columns to the left of the given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + count - Usage: count={count} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetColumnsBeforeRangeWithCount(string workbookId, string workbookWorksheetId, int count, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/columnsBefore(count=${getEncodedUri(count)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Retrieves a list of table columns. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Column` record list or else an `error` if failed - @display {label: "List Columns"} - remote isolated function listColumns(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns @display {label: "Column List"} Column[]|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, COLUMNS], workbookIdOrPath, sessionId, query); - http:Response response = check self.excelClient->get(path, headers); - return getColumnArray(response); + # Deletes the cells associated with the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function deleteWorkbookNamedItemRange(string workbookId, string workbookNamedItemId, Shift payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/delete`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Updates the properties of a column. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a workbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + index - The index number of the column within the columns collection of the table - # + values - A 2-dimensional array of unformatted values of the table rows (boolean or string or number). Provide - # values for relevant fields that should be updated. Existing properties that are not included in the request will - # maintain their previous values or be recalculated based on changes to other property values. For best performance - # you shouldn't include existing values that haven't changed - # + name - The name of the table column - # + sessionId - Session ID - # + return - `Column` record or else an `error` if failed - @display {label: "Update Column"} - remote isolated function updateColumn(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Index"} int index, - @display {label: "Values"} json[][]? values = (), - @display {label: "Column Name"} string? name = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Column|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, COLUMNS, ITEM_AT + OPEN_ROUND_BRACKET + INDEX + EQUAL_SIGN + index.toString() - + CLOSE_ROUND_BRACKET], workbookIdOrPath, sessionId); - map payload = {index: index}; - if (name is string) { - payload["name"] = name; - } - if (values is json[][]) { - payload["values"] = values; - } - return check self.excelClient->patch(path, payload, headers, targetType = Column); + # Deletes the cells associated with the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function deleteWorksheetRange(string workbookId, string workbookWorksheetId, Shift payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/range/delete`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Deletes a column from the table. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + index - The index number of the column within the columns collection of the table - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Delete Column"} - remote isolated function deleteColumn(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Index"} int index, - @display {label: "Session ID"} string? sessionId = ()) returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId, COLUMNS, ITEM_AT + OPEN_ROUND_BRACKET + INDEX + EQUAL_SIGN + index.toString() - + CLOSE_ROUND_BRACKET], workbookIdOrPath, sessionId); - http:Response response = check self.excelClient->delete(path, headers = headers); - _ = check handleResponse(response); + # Deletes the cells associated with the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function deleteWorkbookTableColumnRange(string workbookId, string workbookTableId, string workbookTableColumnId, Shift payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/delete`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Deletes a table. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + tableNameOrId - Table name or ID - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Delete Table"} - remote isolated function deleteTable(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Table Name or ID"} string tableNameOrId, - @display {label: "Session ID"} string? sessionId = ()) returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - TABLES, tableNameOrId], workbookIdOrPath, sessionId); - http:Response response = check self.excelClient->delete(path, headers = headers); - _ = check handleResponse(response); + # Gets an range that represents the entire column of the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeEntireColumn(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/entireColumn`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets an range that represents the entire column of the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeEntireColumn(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/range/entireColumn`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets an range that represents the entire column of the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeEntireColumn(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/entireColumn`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a range that represents the entire row of the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNameRangeEntireRow(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/entireRow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a range that represents the entire row of the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeEntireRow(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/range/entireRow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a range that represents the entire row of the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeEntireRow(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/entireRow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function insertWorkbookNamedItemRange(string workbookId, string workbookNamedItemId, Shift payload, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/insert`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Range response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function insertWorksheetRange(string workbookId, string workbookWorksheetId, string address, Shift payload, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/range/insert`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Range response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function insertWorkbookTableColumnRange(string workbookId, string workbookTableId, string workbookTableColumnId, Shift payload, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/insert`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Range response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Gets the range that represents the rectangular intersection of the given ranges. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + anotherRange - Usage: anotherRange={anotherRange} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeIntersection(string workbookId, string workbookNamedItemId, string anotherRange, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/intersection(anotherRange=${getEncodedUri(anotherRange)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the range that represents the rectangular intersection of the given ranges. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + anotherRange - Usage: anotherRange={anotherRange} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeIntersection(string workbookId, string workbookWorksheetId, string address, string anotherRange, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/intersection(anotherRange=${getEncodedUri(anotherRange)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the range that represents the rectangular intersection of the given ranges. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + anotherRange - Usage: anotherRange={anotherRange} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeIntersection(string workbookId, string workbookTableId, string workbookTableColumnId, string anotherRange, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/intersection(anotherRange=${getEncodedUri(anotherRange)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last cell within the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeLastCell(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/lastCell`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last cell within the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeLastCell(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/lastCell`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last cell within the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeLastCell(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/lastCell`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last column within the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeLastColumn(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/lastColumn`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last column within the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeLastColumn(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/lastColumn`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last column within the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeLastColumn(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/lastColumn`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last row within the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeLastRow(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/lastRow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last row within the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeLastRow(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/range/lastRow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the last row within the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeLastRow(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/lastRow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Merge the range cells into one region in the worksheet. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function mergeWorkbookNamedItemRange(string workbookId, string workbookNamedItemId, Across payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/merge`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Merge the range cells into one region in the worksheet. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function mergeWorksheetRange(string workbookId, string workbookWorksheetId, string address, Across payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/merge`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Merge the range cells into one region in the worksheet. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function mergeWorkbookTableColumnRange(string workbookId, string workbookTableId, string workbookTableColumnId, Across payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/merge`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Gets range that's offset from the specified range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + rowOffset - Usage: rowOffset={rowOffset} + # + columnOffset - Usage: columnOffset={columnOffset} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemOffsetRange(string workbookId, string workbookNamedItemId, int rowOffset, int columnOffset, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/offsetRange(rowOffset=${getEncodedUri(rowOffset)},columnOffset=${getEncodedUri(columnOffset)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets range that's offset from the specified range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + rowOffset - Usage: rowOffset={rowOffset} + # + columnOffset - Usage: columnOffset={columnOffset} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetOffsetRange(string workbookId, string workbookWorksheetId, string address, int rowOffset, int columnOffset, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/offsetRange(rowOffset=${getEncodedUri(rowOffset)},columnOffset=${getEncodedUri(columnOffset)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets range that's offset from the specified range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + rowOffset - Usage: rowOffset={rowOffset} + # + columnOffset - Usage: columnOffset={columnOffset} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnOffsetRange(string workbookId, string workbookTableId, string workbookTableColumnId, int rowOffset, int columnOffset, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/offsetRange(rowOffset=${getEncodedUri(rowOffset)},columnOffset=${getEncodedUri(columnOffset)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get a range similar to the current range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + deltaRows - Usage: deltaRows={deltaRows} + # + deltaColumns - Usage: deltaColumns={deltaColumns} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemResizedRange(string workbookId, string workbookNamedItemId, int deltaRows, int deltaColumns, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/resizedRange(deltaRows=${getEncodedUri(deltaRows)},deltaColumns=${getEncodedUri(deltaColumns)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get a range similar to the current range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + deltaRows - Usage: deltaRows={deltaRows} + # + deltaColumns - Usage: deltaColumns={deltaColumns} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetResizedRange(string workbookId, string workbookWorksheetId, string address, int deltaRows, int deltaColumns, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/resizedRange(deltaRows=${getEncodedUri(deltaRows)},deltaColumns=${getEncodedUri(deltaColumns)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get a range similar to the current range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + deltaRows - Usage: deltaRows={deltaRows} + # + deltaColumns - Usage: deltaColumns={deltaColumns} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnResizedRange(string workbookId, string workbookTableId, string workbookTableColumnId, int deltaRows, int deltaColumns, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/resizedRange(deltaRows=${getEncodedUri(deltaRows)},deltaColumns=${getEncodedUri(deltaColumns)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a row contained in the range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + row - Usage: row={row} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeRow(string workbookId, string workbookNamedItemId, int row, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/row(row=${getEncodedUri(row)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a row contained in the range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + row - Usage: row={row} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeRow(string workbookId, string workbookWorksheetId, string address, int row, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/row(row=${getEncodedUri(row)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a row contained in the range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + row - Usage: row={row} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeRow(string workbookId, string workbookTableId, string workbookTableColumnId, int row, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/row(row=${getEncodedUri(row)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets a certain number of rows above a given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeRowAbove(string workbookId, string workbookWorksheetId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/rowsAbove`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets certain number of rows below a given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeRowBelow(string workbookId, string workbookWorksheetId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/rowsBelow`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets certain number of rows below a given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + count - Usage: count={count} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeRowBelowWithCount(string workbookId, string workbookWorksheetId, int count, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range/rowsBelow(count=${getEncodedUri(count)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Unmerge the range cells into separate cells. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function unmergeWorkbookNamedItemRange(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/unmerge`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Unmerge the range cells into separate cells. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function unmergeWorksheetRange(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/unmerge`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Unmerge the range cells into separate cells. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function unmergeWorkbookTableColumnRange(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/unmerge`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Gets the used range of the given range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemUsedRnge(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/usedRange`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the used range of the given range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + valuesOnly - Usage: valuesOnly={valuesOnly} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemUsedRngeWithValuesOnly(string workbookId, string workbookNamedItemId, boolean valuesOnly, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/usedRange(valuesOnly=${getEncodedUri(valuesOnly)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the used range of the given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetUsedRange(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/usedRange`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the used range of the given range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + valuesOnly - Usage: valuesOnly={valuesOnly} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetUsedRangeWithValuesOnly(string workbookId, string workbookWorksheetId, string address, boolean valuesOnly, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/usedRange(valuesOnly=${getEncodedUri(valuesOnly)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the used range of the given range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnUsedRange(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/usedRange`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the used range of the given range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + valuesOnly - Usage: valuesOnly={valuesOnly} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnUsedRangeWithValuesOnly(string workbookId, string workbookTableId, string workbookTableColumnId, boolean valuesOnly, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/usedRange(valuesOnly=${getEncodedUri(valuesOnly)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get the range visible from a filtered range. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookNamedItemRangeVisibleView(string workbookId, string workbookNamedItemId, string? workbookSessionId = ()) returns RangeView|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/range/visibleView`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + RangeView response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get the range visible from a filtered range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeVisibleView(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns RangeView|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address='
')/visibleView`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + RangeView response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get the range visible from a filtered range. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableColumnRangeVisibleView(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns RangeView|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range/visibleView`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + RangeView response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get application from workbooks. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorkbookApplication(string workbookId, string? workbookSessionId = (), ("id"|"calculationMode")[]? 'select = (), ("*")[]? expand = ()) returns Application|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/application`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Application response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Recalculate all currently opened workbooks in Excel. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function calculateWorkbookApplication(string workbookId, CalculationType payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/application/calculate`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Close an existing workbook session. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function closeSession(string workbookId, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/closeSession`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Create a new workbook session. + # + # + workbookId - key: id of workbook + # + payload - Action parameters + # + return - Success + remote isolated function createSession(string workbookId, PersistChanges payload) returns SessionInfo|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/createSession`; + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + SessionInfo response = check self.clientEp->post(resourcePath, request); + return response; + } + # Refreshes an existing workbook session. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function refreshSession(string workbookId, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/refreshSession`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get names from workbooks. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorkbookNamedItem(string workbookId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"comment"|"comment desc"|"name"|"name desc"|"scope"|"scope desc"|"type"|"type desc"|"value"|"value desc"|"visible"|"visible desc")[]? orderby = (), ("id"|"comment"|"name"|"scope"|"type"|"value"|"visible"|"worksheet")[]? 'select = (), ("*"|"worksheet")[]? expand = ()) returns NamedItems|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + NamedItems response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get names from workbooks. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorkbookNamedItem(string workbookId, string workbookNamedItemId, string? workbookSessionId = (), ("id"|"comment"|"name"|"scope"|"type"|"value"|"visible"|"worksheet")[]? 'select = (), ("*"|"worksheet")[]? expand = ()) returns NamedItem|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + NamedItem response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete navigation property names for workbooks. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorkbookNamedItem(string workbookId, string workbookNamedItemId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the navigation property names in workbooks. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - Retrieved navigation property + remote isolated function updateWorkbookNamedItem(string workbookId, string workbookNamedItemId, NamedItem payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Create new navigation property to series for workbooks. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + payload - New navigation property + # + return - Created navigation property. + remote isolated function createWorkbookNamedItemWorksheetChartSeries(string workbookId, string workbookNamedItemId, string workbookChartId, ChartSeries payload, string? workbookSessionId = ()) returns ChartSeries|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/worksheet/charts/${getEncodedUri(workbookChartId)}/series`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + ChartSeries response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Create new navigation property to columns for workbooks. + # + # + workbookId - key: id of workbook + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - New navigation property + # + return - Created navigation property. + remote isolated function createWorkbookNamedItemWorksheetTableColumn(string workbookId, string workbookNamedItemId, string workbookTableId, Column payload, string? workbookSessionId = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/names/${getEncodedUri(workbookNamedItemId)}/worksheet/tables/${getEncodedUri(workbookTableId)}/columns`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Column response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Adds a new name to the collection of the given scope using the user's locale for the formula. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookName(string workbookId, NewNamedItem payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/names/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Creates new formula local. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookNameFormulaLocal(string workbookId, Formula payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/names/addFormulaLocal`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Gets tables from workbooks. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorkbookTables(string workbookId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"highlightFirstColumn"|"highlightFirstColumn desc"|"highlightLastColumn"|"highlightLastColumn desc"|"name"|"name desc"|"showBandedColumns"|"showBandedColumns desc"|"showBandedRows"|"showBandedRows desc"|"showFilterButton"|"showFilterButton desc"|"showHeaders"|"showHeaders desc"|"showTotals"|"showTotals desc"|"style"|"style desc")[]? orderby = (), ("id"|"highlightFirstColumn"|"highlightLastColumn"|"name"|"showBandedColumns"|"showBandedRows"|"showFilterButton"|"showHeaders"|"showTotals"|"style"|"columns"|"rows"|"sort"|"worksheet")[]? 'select = (), ("*"|"columns"|"rows"|"sort"|"worksheet")[]? expand = ()) returns Tables|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Tables response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get tables from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorkbookTable(string workbookId, string workbookTableId, string? workbookSessionId = (), ("id"|"highlightFirstColumn"|"highlightLastColumn"|"name"|"showBandedColumns"|"showBandedRows"|"showFilterButton"|"showHeaders"|"showTotals"|"style"|"columns"|"rows"|"sort"|"worksheet")[]? 'select = (), ("*"|"columns"|"rows"|"sort"|"worksheet")[]? expand = ()) returns Table|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Table response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete navigation property tables for workbooks + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorkbookTable(string workbookId, string workbookTableId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the navigation property tables in workbooks + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - New navigation property values + remote isolated function updateWorkbookTable(string workbookId, string workbookTableId, Table payload, string? workbookSessionId = ()) returns Table|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Table response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Get columns from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorkbookTableColumns(string workbookId, string workbookTableId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"index"|"index desc"|"name"|"name desc"|"values"|"values desc")[]? orderby = (), ("id"|"index"|"name"|"values"|"filter")[]? 'select = (), ("*"|"filter")[]? expand = ()) returns Columns|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Columns response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Create new navigation property to columns for workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - New navigation property + # + return - Created navigation property. + remote isolated function createWorkbookTableColumns(string workbookId, string workbookTableId, Column payload, string? workbookSessionId = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Column response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get columns from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorkbookTableColumn(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = (), ("id"|"index"|"name"|"values"|"filter")[]? 'select = (), ("*"|"filter")[]? expand = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Column response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete columns for workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorkbookTableColumn(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the columns in workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - Retrieved navigation property + remote isolated function updateWorkbookTableColumn(string workbookId, string workbookTableId, string workbookTableColumnId, Column payload, string? workbookSessionId = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Column response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Get the range object associated with the entire table. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableRange(string workbookId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get rows from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorkbookTableRows(string workbookId, string workbookTableId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"index"|"index desc"|"values"|"values desc")[]? orderby = (), ("id"|"index"|"values")[]? 'select = (), ("*")[]? expand = ()) returns Rows|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/rows`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Rows response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get rows from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbooktablerowId - key: id of workbookTableRow + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorkbookTableRow(string workbookId, string workbookTableId, string workbooktablerowId, string? workbookSessionId = (), ("id"|"index"|"values")[]? 'select = (), ("*")[]? expand = ()) returns Row|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/rows/${getEncodedUri(workbooktablerowId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Row response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete rows for workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbooktablerowId - key: id of workbookTableRow + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorkbookTableRow(string workbookId, string workbookTableId, string workbooktablerowId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/rows/${getEncodedUri(workbooktablerowId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the rows in workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbooktablerowId - key: id of workbookTableRow + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - Retrieved navigation property + remote isolated function updateWorkbookTableRow(string workbookId, string workbookTableId, string workbooktablerowId, Row payload, string? workbookSessionId = ()) returns Row|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/rows/${getEncodedUri(workbooktablerowId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Row response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Adds rows to the end of the table. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookTableRow(string workbookId, string workbookTableId, NewRow payload, string? workbookSessionId = ()) returns Row|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/rows/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Row response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get charts from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorkbookTableCharts(string workbookId, string workbookTableId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"height"|"height desc"|"left"|"left desc"|"name"|"name desc"|"top"|"top desc"|"width"|"width desc")[]? orderby = (), ("id"|"height"|"left"|"name"|"top"|"width"|"axes"|"dataLabels"|"format"|"legend"|"series"|"title"|"worksheet")[]? 'select = (), ("*"|"axes"|"dataLabels"|"format"|"legend"|"series"|"title"|"worksheet")[]? expand = ()) returns Charts|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/charts`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Charts response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Resets the source data for the chart. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookChartId - key: id of workbookChart + # + payload - Action parameters + # + return - Success + remote isolated function setWorkbooktableWorksheetChartData(string workbookId, string workbookTableId, string workbookChartId, SetData payload) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/charts/${getEncodedUri(workbookChartId)}/setData`; + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request); + return response; + } + # Positions the chart relative to cells on the worksheet. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function setWorkbookTableWorksheeetChartPosition(string workbookId, string workbookTableId, string workbookChartId, Position payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/charts/${getEncodedUri(workbookChartId)}/setPosition`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get series from workbooks. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorkbookTableWorksheetChartSeries(string workbookId, string workbookTableId, string workbookChartId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"name"|"name desc")[]? orderby = (), ("id"|"name"|"format"|"points")[]? 'select = (), ("*"|"format"|"points")[]? expand = ()) returns ChartSeriesCollection|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/charts/${getEncodedUri(workbookChartId)}/series`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + ChartSeriesCollection response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - # Creates a new chart. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + type - Represents the type of a chart. The possible values are: ColumnClustered, ColumnStacked, - # ColumnStacked100, BarClustered, BarStacked, BarStacked100, LineStacked, LineStacked100, LineMarkers, - # LineMarkersStacked, LineMarkersStacked100, PieOfPie, etc. - # + sourceData - The Range object corresponding to the source data - # + seriesBy - Specifies the way columns or rows are used as data series on the chart - # + sessionId - Session ID - # + return - `Chart` record or else an `error` if failed - @display {label: "Add Chart"} - remote isolated function addChart(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Type"} string 'type, - @display {label: "Data"} json sourceData, SeriesBy? seriesBy = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Chart|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, ADD], workbookIdOrPath, sessionId); - json payload = {'type: 'type, sourceData: sourceData, seriesBy: seriesBy}; - return check self.excelClient->post(path, payload, headers, targetType = Chart); + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookTableWorksheetChart(string workbookId, string workbookTableId, NewChart payload, string? workbookSessionId = ()) returns Chart|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/charts/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Chart response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Retrieves the properties of a chart. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + chartName - Chart name - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Chart` record or else an `error` if failed - @display {label: "Get Chart"} - remote isolated function getChart(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Name"} string chartName, - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns Chart|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, chartName], workbookIdOrPath, sessionId, query); - return check self.excelClient->get(path, headers, targetType = Chart); + # Gets the range containing the single cell based on row and column numbers. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + row - Usage: row={row} + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorkbookTableWorksheetCell(string workbookId, string workbookTableId, int row, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/cell(row=${getEncodedUri(row)},column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Retrieve a list of charts. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + query - Query string that can control the amount of data returned in a response. String should start with `?` - # and followed by query parameters. Example: `?$top=2&$count=true`. For more information about query - # parameters, refer https://docs.microsoft.com/en-us/graph/query-parameters - # + sessionId - Session ID - # + return - `Chart` record list or else an `error` if failed - @display {label: "List Charts"} - remote isolated function listCharts(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Query"} string? query = (), - @display {label: "Session ID"} string? sessionId = ()) - returns @display {label: "Chart List"} Chart[]|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS], workbookIdOrPath, sessionId, query); - http:Response response = check self.excelClient->get(path, headers); - return getChartArray(response); + # Adds a new name to the collection of the given scope using the user's locale for the formula. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookTableWorksheetName(string workbookId, string workbookTableId, NewNamedItem payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/names/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Updates the properties of chart. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + chartName - Chart name - # + chart - 'Chart' record contains values for relevant fields that should be updated - # + sessionId - Session ID - # + return - `Chart` record or else an `error` if failed - @display {label: "Update Chart"} - remote isolated function updateChart(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Name"} string chartName, - @display {label: "Values need to be Updated"} Chart chart, - @display {label: "Session ID"} string? sessionId = ()) - returns Chart|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, chartName], workbookIdOrPath, sessionId); - json payload = check chart.cloneWithType(json); - return check self.excelClient->patch(path, payload, headers, targetType = Chart); + # Creates new formula local. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookTableWorksheetFormula(string workbookId, string workbookTableId, Formula payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/names/addFormulaLocal`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Creates a new table. + # + # + workbookId - key: id of workbook + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookTableWorksheetTable(string workbookId, string workbookTableId, NewTable payload, string? workbookSessionId = ()) returns Table|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/${getEncodedUri(workbookTableId)}/worksheet/tables/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Table response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Creates a new table. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorkbookTable(string workbookId, NewTable payload, string? workbookSessionId = ()) returns Table|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/tables/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Table response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get worksheets from workbooks. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheets(string workbookId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"name"|"name desc"|"position"|"position desc"|"visibility"|"visibility desc")[]? orderby = (), ("id"|"name"|"position"|"visibility"|"charts"|"names"|"pivotTables"|"protection"|"tables")[]? 'select = (), ("*"|"charts"|"names"|"pivotTables"|"protection"|"tables")[]? expand = ()) returns Worksheets|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Worksheets response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Creates new worksheet for workbooks. + # + # + workbookId - key: id of workbook + # + workbookSessionId - The ID of the session + # + payload - New navigation property + # + return - Created navigation property. + remote isolated function createWorksheet(string workbookId, Worksheet payload, string? workbookSessionId = ()) returns Worksheet|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Worksheet response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get worksheets from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorksheet(string workbookId, string workbookWorksheetId, string? workbookSessionId = (), ("id"|"name"|"position"|"visibility"|"charts"|"names"|"pivotTables"|"protection"|"tables")[]? 'select = (), ("*"|"charts"|"names"|"pivotTables"|"protection"|"tables")[]? expand = ()) returns Worksheet|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Worksheet response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete worksheet for workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorksheet(string workbookId, string workbookWorksheetId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the worksheet in workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - A collection of chart + remote isolated function updateWorksheet(string workbookId, string workbookWorksheetId, Worksheet payload, string? workbookSessionId = ()) returns Worksheet|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Worksheet response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Get charts from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheetCharts(string workbookId, string workbookWorksheetId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"height"|"height desc"|"left"|"left desc"|"name"|"name desc"|"top"|"top desc"|"width"|"width desc")[]? orderby = (), ("id"|"height"|"left"|"name"|"top"|"width"|"axes"|"dataLabels"|"format"|"legend"|"series"|"title"|"worksheet")[]? 'select = (), ("*"|"axes"|"dataLabels"|"format"|"legend"|"series"|"title"|"worksheet")[]? expand = ()) returns Charts|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Charts response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get chart from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorksheetChart(string workbookId, string workbookWorksheetId, string workbookChartId, string? workbookSessionId = (), ("id"|"height"|"left"|"name"|"top"|"width"|"axes"|"dataLabels"|"format"|"legend"|"series"|"title"|"worksheet")[]? 'select = (), ("*"|"axes"|"dataLabels"|"format"|"legend"|"series"|"title"|"worksheet")[]? expand = ()) returns Chart|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Chart response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete chart for workbooks + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorksheetChart(string workbookId, string workbookWorksheetId, string workbookChartId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the chart in workbooks + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - Retrieved navigation property + remote isolated function updateWorksheetChart(string workbookId, string workbookWorksheetId, string workbookChartId, Chart payload, string? workbookSessionId = ()) returns Chart|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Chart response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; } - # Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + chartName - Chart name - # + width - The desired width of the resulting image - # + height - The desired height of the resulting image. - # + fittingMode - The method used to scale the chart to the specified dimensions (if both height and width are set) - # + sessionId - Session ID - # + return - Base-64 image string or else an `error` if failed - @display {label: "Get Chart Image"} - remote isolated function getChartImage(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Name"} string chartName, - @display {label: "Chart Width"} int? width = (), - @display {label: "Chart Height"} int? height = (), - FittingMode? fittingMode = (), - @display {label: "Session ID"} string? sessionId = ()) - returns @display {label: "Base-64 Chart Image"} string|error { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, chartName, IMAGE], workbookIdOrPath, sessionId); - path = setOptionalParamsToPath(path, width, height, fittingMode); - http:Response response = check self.excelClient->get(path, headers); - map handledResponse = check handleResponse(response); - return handledResponse[VALUE].toString(); + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetChartImage(string workbookId, string workbookWorksheetId, string workbookChartId, string? workbookSessionId = ()) returns Image|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/image`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Image response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + width - Usage: width={width} + # + height - Usage: height={height} + # + fittingMode - Usage: fittingMode={fittingMode} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetChartImageWithWidthHeightFittingMode(string workbookId, string workbookWorksheetId, string workbookChartId, int width, int height, string fittingMode, string? workbookSessionId = ()) returns Image|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/image(width=${getEncodedUri(width)},height=${getEncodedUri(height)},fittingMode=${getEncodedUri(fittingMode)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Image response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + width - Usage: width={width} + # + height - Usage: height={height} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetChartImageWithWidthHeight(string workbookId, string workbookWorksheetId, string workbookChartId, int width, int height, string? workbookSessionId = ()) returns Image|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/image(width=${getEncodedUri(width)},height=${getEncodedUri(height)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Image response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + width - Usage: width={width} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetChartImageWithWidth(string workbookId, string workbookWorksheetId, string workbookChartId, int width, string? workbookSessionId = ()) returns Image|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/image(width=${getEncodedUri(width)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Image response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - # Resets the source data for the chart. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + chartName - Chart name - # + sourceData - The Range object corresponding to the source data - # + seriesBy - Specifies the way columns or rows are used as data series on the chart - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Reset Chart Data"} - remote isolated function resetChartData(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Name"} string chartName, - @display {label: "Data"} json sourceData, SeriesBy? seriesBy = (), - @display {label: "Session ID"} string? sessionId = ()) - returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, chartName, SET_DATA], workbookIdOrPath, sessionId); - json payload = {sourceData: sourceData, seriesBy: seriesBy}; - http:Response response = check self.excelClient->post(path, payload, headers); - _ = check handleResponse(response); + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function setWorksheetChartData(string workbookId, string workbookWorksheetId, string workbookChartId, SetData payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/setData`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - # Positions the chart relative to cells on the worksheet. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + chartName - Chart name - # + startCell - The start cell. This is where the chart will be moved to. The start cell is the top-left or - # top-right cell, depending on the user's right-to-left display settings. - # + endCell - The end cell. If specified, the chart's width and height will be set to fully cover up this cell/range - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Set Chart Position"} - remote isolated function setChartPosition(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Name"} string chartName, - @display {label: "Start Cell"} string startCell, - @display {label: "End Cell"} string? endCell = (), - @display {label: "Session ID"} string? sessionId = ()) - returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, chartName, SET_POSITION], workbookIdOrPath, sessionId); - json payload = {startCell: startCell, endCell: endCell}; - http:Response response = check self.excelClient->post(path, payload, headers); - _ = check handleResponse(response); + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function setWorksheetChartPosition(string workbookId, string workbookWorksheetId, string workbookChartId, Position payload, string? workbookSessionId = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/setPosition`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + http:Response response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } - - # Deletes a chart. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + worksheetNameOrId - Worksheet name or ID - # + chartName - Chart name - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Delete Chart"} - remote isolated function deleteChart(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Worksheet Name or ID"} string worksheetNameOrId, - @display {label: "Chart Name"} string chartName, - @display {label: "Session ID"} string? sessionId = ()) - returns error? { - [string, map?] [path, headers] = check createRequestParams([WORKSHEETS, worksheetNameOrId, - CHARTS, chartName], workbookIdOrPath, sessionId); - http:Response response = check self.excelClient->delete(path, headers = headers); - _ = check handleResponse(response); + # Get series from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheetChartSeries(string workbookId, string workbookWorksheetId, string workbookChartId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"name"|"name desc")[]? orderby = (), ("id"|"name"|"format"|"points")[]? 'select = (), ("*"|"format"|"points")[]? expand = ()) returns ChartSeriesCollection|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/series`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + ChartSeriesCollection response = check self.clientEp->get(resourcePath, httpHeaders); + return response; } - - # Retrieves the properties of a workbookApplication. + # Create new navigation property to series for workbooks. # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + sessionId - Session ID - # + return - `WorkbookApplication` or else an `error` if failed - @display {label: "Get Workbook Application"} - remote isolated function getWorkbookApplication(@display {label: "Workbook ID or Path"} string workbookIdOrPath, - @display {label: "Session ID"} string? sessionId = ()) - returns WorkbookApplication|error { - [string, map?] [path, headers] = check createRequestParams([APPLICATION], workbookIdOrPath, - sessionId); - WorkbookApplication response = check self.excelClient->get(path, headers, targetType = WorkbookApplication); + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookChartId - key: id of workbookChart + # + payload - New navigation property + # + return - Created navigation property. + remote isolated function createWorksheetChartSeries(string workbookId, string workbookWorksheetId, string workbookChartId, ChartSeries payload) returns ChartSeries|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/${getEncodedUri(workbookChartId)}/series`; + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + ChartSeries response = check self.clientEp->post(resourcePath, request); return response; } - - # Recalculates all currently opened workbooks in Excel. - # - # + workbookIdOrPath - Workbook ID or file path. Path should be with the `.xlsx` extension from root. If a worksbook - # is in root, path will be `.xlsx`) - # + 'type - Specifies the calculation type to use - # + sessionId - Session ID - # + return - `()` or else an `error` if failed - @display {label: "Calculate Workbook Application"} - remote isolated function calculateWorkbookApplication(@display {label: "Workbook ID or Path"} string - workbookIdOrPath, CalculationType 'type, - @display {label: "Session ID"} string? sessionId = ()) - returns error? { - [string, map?] [path, headers] = check createRequestParams([APPLICATION, CALCULATE], - workbookIdOrPath, sessionId); - json payload = {calculationType: 'type}; - http:Response response = check self.excelClient->post(path, payload, headers); - _ = check handleResponse(response); + # Creates a new chart. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorksheetChart(string workbookId, string workbookWorksheetId, NewChart payload, string? workbookSessionId = ()) returns Chart|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Chart response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Gets a chart based on its position in the collection. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + index - Usage: index={index} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetChartItemAt(string workbookId, string workbookWorksheetId, int index, string? workbookSessionId = ()) returns Chart|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/charts/itemAt(index=${getEncodedUri(index)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Chart response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Gets the range containing the single cell based on row and column numbers. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + row - Usage: row={row} + # + column - Usage: column={column} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetCell(string workbookId, string workbookWorksheetId, int row, int column, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/cell(row=${getEncodedUri(row)},column=${getEncodedUri(column)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Retrieve the properties and relationships of range. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + address - Usage: address={address} + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetRangeWithAddress(string workbookId, string workbookWorksheetId, string address, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/range(address=${getEncodedUri(address)})`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get names from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorksheetNamedItem(string workbookId, string workbookWorksheetId, string workbookNamedItemId, string? workbookSessionId = (), ("id"|"comment"|"name"|"scope"|"type"|"value"|"visible"|"worksheet")[]? 'select = (), ("*"|"worksheet")[]? expand = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/names/${getEncodedUri(workbookNamedItemId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + NamedItem response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete navigation property names for workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorksheetNamedItem(string workbookId, string workbookWorksheetId, string workbookNamedItemId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/names/${getEncodedUri(workbookNamedItemId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the names in workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookNamedItemId - key: id of workbookNamedItem + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - New navigation property values + remote isolated function updateWorksheetNamedItem(string workbookId, string workbookWorksheetId, string workbookNamedItemId, NamedItem payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/names/${getEncodedUri(workbookNamedItemId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Adds a new name to the collection of the given scope using the user's locale for the formula. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorksheetName(string workbookId, string workbookWorksheetId, NewNamedItem payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/names/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Adds a new name to the collection of a given scope using the user’s locale for the formula. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorksheetFormula(string workbookId, string workbookWorksheetId, Formula payload, string? workbookSessionId = ()) returns NamedItem|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/names/addFormulaLocal`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + NamedItem response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get pivotTables from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheetPivotTables(string workbookId, string workbookWorksheetId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"name"|"name desc")[]? orderby = (), ("id"|"name"|"worksheet")[]? 'select = (), ("*"|"worksheet")[]? expand = ()) returns WorkbookPivotTables|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/pivotTables`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + WorkbookPivotTables response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get tables from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheetTables(string workbookId, string workbookWorksheetId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"highlightFirstColumn"|"highlightFirstColumn desc"|"highlightLastColumn"|"highlightLastColumn desc"|"name"|"name desc"|"showBandedColumns"|"showBandedColumns desc"|"showBandedRows"|"showBandedRows desc"|"showFilterButton"|"showFilterButton desc"|"showHeaders"|"showHeaders desc"|"showTotals"|"showTotals desc"|"style"|"style desc")[]? orderby = (), ("id"|"highlightFirstColumn"|"highlightLastColumn"|"name"|"showBandedColumns"|"showBandedRows"|"showFilterButton"|"showHeaders"|"showTotals"|"style"|"columns"|"rows"|"sort"|"worksheet")[]? 'select = (), ("*"|"columns"|"rows"|"sort"|"worksheet")[]? expand = ()) returns Tables|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Tables response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get tables from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorksheetTable(string workbookId, string workbookWorksheetId, string workbookTableId, string? workbookSessionId = (), ("id"|"highlightFirstColumn"|"highlightLastColumn"|"name"|"showBandedColumns"|"showBandedRows"|"showFilterButton"|"showHeaders"|"showTotals"|"style"|"columns"|"rows"|"sort"|"worksheet")[]? 'select = (), ("*"|"columns"|"rows"|"sort"|"worksheet")[]? expand = ()) returns Table|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Table response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete table for workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorksheetTable(string workbookId, string workbookWorksheetId, string workbookTableId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Updates the table in workbooks + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - New navigation property values + remote isolated function updateWorksheetTable(string workbookId, string workbookWorksheetId, string workbookTableId, Table payload, string? workbookSessionId = ()) returns Table|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Table response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Gets columns from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheetTableColumns(string workbookId, string workbookWorksheetId, string workbookTableId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"index"|"index desc"|"name"|"name desc"|"values"|"values desc")[]? orderby = (), ("id"|"index"|"name"|"values"|"filter")[]? 'select = (), ("*"|"filter")[]? expand = ()) returns Columns|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/columns`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Columns response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Create new navigation property to columns for workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - New navigation property + # + return - Created navigation property. + remote isolated function createWorksheetTableColumn(string workbookId, string workbookWorksheetId, string workbookTableId, Column payload, string? workbookSessionId = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/columns`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Column response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Get column from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function getWorksheetTableColumns(string workbookId, string workbookWorksheetId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = (), ("id"|"index"|"name"|"values"|"filter")[]? 'select = (), ("*"|"filter")[]? expand = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}`; + map queryParam = {"$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Column response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete column for workbooks + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorksheetTableColumn(string workbookId, string workbookWorksheetId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Update the column in workbooks + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - New navigation property values + remote isolated function updateWorksheetTableColumn(string workbookId, string workbookWorksheetId, string workbookTableId, string workbookTableColumnId, Column payload, string? workbookSessionId = ()) returns Column|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Column response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Gets the range specified by the address or name. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookTableColumnId - key: id of workbookTableColumn + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetTableColumnRange(string workbookId, string workbookWorksheetId, string workbookTableId, string workbookTableColumnId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/columns/${getEncodedUri(workbookTableColumnId)}/range`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Invoke function range + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + return - Success + remote isolated function getWorksheetTableRange(string workbookId, string workbookWorksheetId, string workbookTableId, string? workbookSessionId = ()) returns Range|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/range`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Range response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Get rows from workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + top - Show only the first n items + # + skip - Skip the first n items + # + search - Search items by search phrases + # + filter - Filter items by property values + # + count - Include count of items + # + orderby - Order items by property values + # + 'select - Select properties to be returned + # + expand - Expand related entities + # + return - Retrieved navigation property + remote isolated function listWorksheetTableRows(string workbookId, string workbookWorksheetId, string workbookTableId, string? workbookSessionId = (), int? top = (), int? skip = (), string? search = (), string? filter = (), boolean? count = (), ("id"|"id desc"|"index"|"index desc"|"values"|"values desc")[]? orderby = (), ("id"|"index"|"values")[]? 'select = (), ("*")[]? expand = ()) returns Rows|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/rows`; + map queryParam = {"$top": top, "$skip": skip, "$search": search, "$filter": filter, "$count": count, "$orderby": orderby, "$select": 'select, "$expand": expand}; + map queryParamEncoding = {"$orderby": {style: FORM, explode: false}, "$select": {style: FORM, explode: false}, "$expand": {style: FORM, explode: false}}; + resourcePath = resourcePath + check getPathForQueryParam(queryParam, queryParamEncoding); + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + Rows response = check self.clientEp->get(resourcePath, httpHeaders); + return response; + } + # Delete row for workbooks + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbooktablerowId - key: id of workbookTableRow + # + workbookSessionId - The ID of the session + # + ifMatch - ETag + # + return - Success + remote isolated function deleteWorksheetTableRow(string workbookId, string workbookWorksheetId, string workbookTableId, string workbooktablerowId, string? workbookSessionId = (), string? ifMatch = ()) returns http:Response|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/rows/${getEncodedUri(workbooktablerowId)}`; + map headerValues = {"workbook-session-id": workbookSessionId, "If-Match": ifMatch}; + map httpHeaders = getMapForHeaders(headerValues); + http:Response response = check self.clientEp->delete(resourcePath, headers = httpHeaders); + return response; + } + # Updates the row in workbooks. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbooktablerowId - key: id of workbookTableRow + # + workbookSessionId - The ID of the session + # + payload - New navigation property values + # + return - New navigation property values + remote isolated function updateWorksheetTableRow(string workbookId, string workbookWorksheetId, string workbookTableId, string workbooktablerowId, Row payload, string? workbookSessionId = ()) returns Row|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/rows/${getEncodedUri(workbooktablerowId)}`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Row response = check self.clientEp->patch(resourcePath, request, httpHeaders); + return response; + } + # Adds row to the end of the table. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookTableId - key: id of workbookTable + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorksheetTableRow(string workbookId, string workbookWorksheetId, string workbookTableId, NewRow payload, string? workbookSessionId = ()) returns Row|error { + string resourcePath = string `/me/drive/items/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/${getEncodedUri(workbookTableId)}/rows/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Row response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; + } + # Creates a new table. + # + # + workbookId - key: id of workbook + # + workbookWorksheetId - key: id of workbookWorksheet + # + workbookSessionId - The ID of the session + # + payload - Action parameters + # + return - Success + remote isolated function addWorksheetTable(string workbookId, string workbookWorksheetId, NewTable payload, string? workbookSessionId = ()) returns Table|error { + string resourcePath = string `/workbooks/${getEncodedUri(workbookId)}/workbook/worksheets/${getEncodedUri(workbookWorksheetId)}/tables/add`; + map headerValues = {"workbook-session-id": workbookSessionId}; + map httpHeaders = getMapForHeaders(headerValues); + http:Request request = new; + json jsonBody = payload.toJson(); + request.setPayload(jsonBody, "application/json"); + Table response = check self.clientEp->post(resourcePath, request, httpHeaders); + return response; } } - diff --git a/ballerina/tests/test.bal b/ballerina/tests/test.bal index e0d0c97..28308dd 100644 --- a/ballerina/tests/test.bal +++ b/ballerina/tests/test.bal @@ -17,6 +17,7 @@ import ballerina/os; import ballerina/log; import ballerina/test; +import ballerina/http; configurable string clientId = os:getEnv("CLIENT_ID"); configurable string clientSecret = os:getEnv("CLIENT_SECRET"); @@ -33,41 +34,46 @@ ConnectionConfig configuration = { } }; +string workbookId = workbookIdOrPath; + Client excelClient = check new (configuration); string workBookId = workbookIdOrPath; +string itemId = "E1E6029AA48AC90!997"; string worksheetName = "testSheet"; string tableName = EMPTY_STRING; string chartName = EMPTY_STRING; string sessionId = EMPTY_STRING; +string columnName = EMPTY_STRING; +string rowId = EMPTY_STRING; +int:Signed32 sheetPosition = 1; +Worksheet sheet = {position: sheetPosition}; +int rowIndex = 2; +boolean showHeaders = false; +int columnInputIndex = 2; @test:BeforeSuite function testCreateSession() { - log:printInfo("excelClient -> createSession()"); - string|error response = excelClient->createSession(workBookId); - if (response is string) { - sessionId = response; - test:assertNotEquals(response, EMPTY_STRING, "Session is not created"); - } else { + SessionInfo|error response = excelClient->createSession(workBookId, {persistChanges: false}); + if response is error { test:assertFail(response.toString()); } } @test:Config {} function testAddWorksheet() { - log:printInfo("excelClient -> addWorksheet()"); - Worksheet|error response = excelClient->addWorksheet(workBookId, worksheetName, sessionId); - if (response is Worksheet) { + Worksheet|error response = excelClient->createWorksheet(workBookId, {name: worksheetName}); + if response is Worksheet { string name = response?.name ?: EMPTY_STRING; test:assertEquals(name, worksheetName, "Unmatch worksheet name"); } else { test:assertFail(response.toString()); - } + } } @test:Config {dependsOn: [testAddWorksheet]} function testGetWorksheet() { - Worksheet|error response = excelClient->getWorksheet(workBookId, worksheetName, sessionId); - if (response is Worksheet) { + Worksheet|error response = excelClient->getWorksheet(workBookId, worksheetName); + if response is Worksheet { string name = response?.name ?: EMPTY_STRING; test:assertEquals(name, worksheetName, "Worksheet not found"); } else { @@ -77,24 +83,18 @@ function testGetWorksheet() { @test:Config {dependsOn: [testGetWorksheet]} function testListWorksheets() { - log:printInfo("excelClient -> listWorksheets()"); - Worksheet[]|error response = excelClient->listWorksheets(workBookId, sessionId = sessionId); - if (response is Worksheet[]) { - string responseWorksheetName = response[0]?.name ?: EMPTY_STRING; - test:assertNotEquals(responseWorksheetName, EMPTY_STRING, "Found 0 worksheets"); + Worksheets|error response = excelClient->listWorksheets(workBookId); + if response is Worksheets { + test:assertNotEquals(response.value.toBalString(), EMPTY_STRING, "Found 0 worksheets"); } else { test:assertFail(response.toString()); } } -int sheetPosition = 1; -Worksheet sheet = {position: sheetPosition}; - -@test:Config {dependsOn: [testDeleteTable]} +@test:Config {dependsOn: [testGetWorksheet]} function testUpdateWorksheet() { - log:printInfo("excelClient -> updateWorksheet()"); - Worksheet|error response = excelClient->updateWorksheet(workBookId, worksheetName, sheet, sessionId); - if (response is Worksheet) { + Worksheet|error response = excelClient->updateWorksheet(workBookId, worksheetName, sheet); + if response is Worksheet { int responsePosition = response?.position ?: 0; test:assertEquals(responsePosition, sheetPosition, "Unmatch worksheet position"); } else { @@ -102,14 +102,11 @@ function testUpdateWorksheet() { } } -int rowIndex = 2; - @test:Config {dependsOn: [testGetWorksheet]} function testGetCell() { - log:printInfo("excelClient -> getCell()"); - Cell|error response = excelClient->getCell(workBookId, worksheetName, rowIndex, 7, sessionId); - if (response is Cell) { - int row = response.rowIndex; + Range|error response = excelClient->getWorksheetCell(workBookId, worksheetName, rowIndex, 7, sessionId); + if response is Range { + int row = response?.rowIndex ?: 0; test:assertEquals(row, rowIndex, "Unmatch worksheet position"); } else { test:assertFail(response.toString()); @@ -118,18 +115,20 @@ function testGetCell() { @test:AfterSuite {} function testDeleteWorksheet() { - log:printInfo("excelClient -> deleteWorksheet()"); - error? response = excelClient->deleteWorksheet(workBookId, worksheetName, sessionId); - if (response is error) { + http:Response|error response = excelClient->deleteWorksheet(workBookId, worksheetName); + if response is http:Response { + if response.statusCode != 204 { + test:assertFail(response.statusCode.toBalString()); + } + } else { test:assertFail(response.toString()); } } @test:Config {dependsOn: [testGetWorksheet]} function testAddTable() { - log:printInfo("excelClient -> addTable()"); - Table|error response = excelClient->addTable(workBookId, worksheetName, "A1:C3", sessionId = sessionId); - if (response is Table) { + Table|error response = excelClient->addWorksheetTable(workBookId, worksheetName, {address: "A1:C3"}, sessionId); + if response is Table { tableName = response?.name ?: EMPTY_STRING; test:assertNotEquals(tableName, EMPTY_STRING, "Table is not created"); } else { @@ -139,9 +138,8 @@ function testAddTable() { @test:Config {dependsOn: [testAddTable]} function testGetTable() { - log:printInfo("excelClient -> getTable()"); - Table|error response = excelClient->getTable(workBookId, worksheetName, tableName, sessionId = sessionId); - if (response is Table) { + Table|error response = excelClient->getWorksheetTable(workBookId, worksheetName, tableName, sessionId); + if response is Table { string responseTableName = response?.name ?: EMPTY_STRING; test:assertEquals(tableName, responseTableName, "Table is not created"); } else { @@ -152,28 +150,21 @@ function testGetTable() { @test:Config {dependsOn: [testGetTable]} function testListTable() { log:printInfo("excelClient -> listTables()"); - Table[]|error response = excelClient->listTables(workBookId, sessionId = sessionId); - if (response is Table[]) { - string responseTableName = response[0]?.name ?: EMPTY_STRING; + Tables|error response = excelClient->listWorkbookTables(workBookId, sessionId); + if response is Tables { + Table[] tables = response?.value ?: []; + string responseTableName = tables[0]?.name ?: EMPTY_STRING; test:assertNotEquals(responseTableName, EMPTY_STRING, "Found 0 tables"); } else { test:assertFail(response.toString()); } } -boolean showHeaders = false; -Table updateTable = { - showHeaders: showHeaders, - showTotals: false -}; - @test:Config {dependsOn: [testGetTable]} function testUpdateTable() { - log:printInfo("excelClient -> updateTable()"); - Table|error response = excelClient->updateTable(workBookId, worksheetName, tableName, updateTable, sessionId); - if (response is Table) { - boolean responseTable = response?.showHeaders ?: true; - test:assertEquals(responseTable, showHeaders, "Table is not updated"); + Table|error response = excelClient->updateWorksheetTable(workBookId, worksheetName, tableName, {style: "TableStyleMedium2"}, sessionId); + if response is Table { + test:assertEquals(response?.style, "TableStyleMedium2", "Table is not updated"); } else { test:assertFail(response.toString()); } @@ -183,11 +174,9 @@ int rowInputIndex = 1; @test:Config {dependsOn: [testUpdateTable]} function testCreateRow() { - log:printInfo("excelClient -> createRow()"); - Row|error response = excelClient->createRow(workBookId, worksheetName, tableName, [[1, 2, 3]], rowInputIndex, - sessionId); - if (response is Row) { - int responseIndex = response.index; + Row|error response = excelClient->addWorksheetTableRow(workBookId, worksheetName, tableName, {values: [[1, 2, 3]], index: rowInputIndex}, sessionId); + if response is Row { + int responseIndex = response.index; test:assertEquals(responseIndex, rowInputIndex, "Row is not added"); } else { test:assertFail(response.toString()); @@ -196,11 +185,10 @@ function testCreateRow() { @test:Config {dependsOn: [testCreateRow]} function testListRows() { - log:printInfo("excelClient -> listRows()"); - Row[]|error response = excelClient->listRows(workBookId, worksheetName, tableName, sessionId = sessionId); - if (response is Row[]) { - int responseIndex = response[1].index; - test:assertEquals(responseIndex, rowInputIndex, "Found 0 rows"); + Rows|error response = excelClient->listWorksheetTableRows(workBookId, worksheetName, tableName, sessionId); + if response is Rows { + Row[] rows = response?.value ?: []; + test:assertEquals(rows[1].index, rowInputIndex, "Found 0 rows"); } else { test:assertFail(response.toString()); } @@ -209,11 +197,13 @@ function testListRows() { @test:Config {dependsOn: [testCreateRow]} function testUpdateRow() { string value = "testValue"; - log:printInfo("excelClient -> updateRow()"); - Row|error response = excelClient->updateRow(workBookId, worksheetName, tableName, rowInputIndex, [[(), (), value]], - sessionId); - if (response is Row) { - json updatedValue = response.values[0][2]; + Row|error response = excelClient->updateWorksheetTableRow(workBookId, worksheetName, tableName, rowInputIndex.toString(), {index: rowInputIndex, values: [[(), 6, value]]},sessionId); + if response is Row { + (string|int|decimal?)[][]? values = response.values; + if values is () { + test:assertFail("Row is not updated"); + } + json updatedValue = values[0][2]; test:assertEquals(updatedValue.toString(), value, "Row is not updated"); } else { test:assertFail(response.toString()); @@ -222,22 +212,19 @@ function testUpdateRow() { @test:Config {dependsOn: [testUpdateRow, testListRows]} function testDeleteRow() { - log:printInfo("excelClient -> deleteRow()"); - error? response = excelClient->deleteRow(workBookId, worksheetName, tableName, rowInputIndex, sessionId); - if (response is error) { + error|http:Response response = excelClient->deleteWorksheetTableRow(workBookId, worksheetName, tableName, rowInputIndex.toString(), sessionId); + if response is error { test:assertFail(response.toString()); + } else if (response.statusCode != 204) { + test:assertFail(response.statusCode.toBalString()); } } -int columnInputIndex = 2; - @test:Config {dependsOn: [testDeleteRow]} function testCreateColumn() { - log:printInfo("excelClient -> createColumn()"); - Column|error response = excelClient->createColumn(workBookId, worksheetName, tableName, [["a3"], ["c3"], ["aa"]], - columnInputIndex, sessionId); - if (response is Column) { - int responseIndex = response.index; + Column|error response = excelClient->createWorksheetTableColumn(workBookId, worksheetName, tableName, {index: columnInputIndex, values : [["a3"], ["a4"], ["a5"], ["a1"]]}, sessionId); + if response is Column { + int responseIndex = response.index; test:assertEquals(responseIndex, columnInputIndex, "Column is not added"); } else { test:assertFail(response.toString()); @@ -246,10 +233,10 @@ function testCreateColumn() { @test:Config {dependsOn: [testCreateColumn]} function testListColumn() { - log:printInfo("excelClient -> listColumns()"); - Column[]|error response = excelClient->listColumns(workBookId, worksheetName, tableName, sessionId = sessionId); - if (response is Column[]) { - int responseIndex = response[2].index; + Columns|error response = excelClient->listWorksheetTableColumns(workBookId, worksheetName, tableName, sessionId); + if response is Columns { + Column[] columns = response?.value ?: []; + int responseIndex = columns[2]?.index ?: 0; test:assertEquals(responseIndex, columnInputIndex, "Found 0 columns"); } else { test:assertFail(response.toString()); @@ -259,12 +246,13 @@ function testListColumn() { @test:Config {dependsOn: [testCreateColumn]} function testUpdateColumn() { string value = "testName"; - log:printInfo("excelClient -> updateColumn()"); - Column|error response = excelClient->updateColumn(workBookId, worksheetName, tableName, columnInputIndex, - [[()], [()], [value]], sessionId = sessionId); - if (response is Column) { - json updatedValue = response.values[2][0]; - test:assertEquals(updatedValue.toString(), value, "Column is not updated"); + Column|error response = excelClient->updateWorksheetTableColumn(workBookId, worksheetName, tableName, columnName, {values: [[()], [()], [value], [()]]}, sessionId); + if response is Column { + (string|int|decimal?)[][]? values = response.values; + if values is () { + test:assertFail("Column is not updated"); + } + test:assertEquals(values[2][0], value, "Column is not updated"); } else { test:assertFail(response.toString()); } @@ -272,27 +260,24 @@ function testUpdateColumn() { @test:Config {dependsOn: [testUpdateColumn, testListColumn]} function testDeleteColumn() { - log:printInfo("excelClient -> deleteColumn()"); - error? response = excelClient->deleteColumn(workBookId, worksheetName, tableName, columnInputIndex, sessionId); - if (response is error) { + error|http:Response response = excelClient->deleteWorksheetTableColumn(workBookId, worksheetName, tableName, columnName, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {dependsOn: [testDeleteColumn, testDeleteRow, testListTable, testUpdateTable]} function testDeleteTable() { - log:printInfo("excelClient -> deleteTable()"); - error? response = excelClient->deleteTable(workBookId, worksheetName, tableName, sessionId); - if (response is error) { + error|http:Response response = excelClient->deleteWorksheetTable(workBookId, worksheetName, tableName, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {dependsOn: [testCreateRow]} function testAddChart() { - log:printInfo("excelClient -> addChart()"); - Chart|error response = excelClient->addChart(workBookId, worksheetName, "ColumnStacked", "A1:B2", AUTO, sessionId); - if (response is Chart) { + Chart|error response = excelClient->addWorksheetChart(workBookId, worksheetName, {'type: "ColumnStacked" , sourceData: "A1:B2", seriesBy: "Auto"}, sessionId); + if response is Chart { chartName = response?.name; test:assertNotEquals(chartName, EMPTY_STRING, "Chart is not created"); } else { @@ -302,9 +287,8 @@ function testAddChart() { @test:Config {dependsOn: [testAddChart]} function testGetChart() { - log:printInfo("excelClient -> getChart()"); - Chart|error response = excelClient->getChart(workBookId, worksheetName, chartName, sessionId = sessionId); - if (response is Chart) { + Chart|error response = excelClient->getWorksheetChart(workBookId, worksheetName, chartName, sessionId); + if response is Chart { string chartId = response?.id ?: EMPTY_STRING; test:assertNotEquals(chartId, EMPTY_STRING, "Chart not found"); } else { @@ -314,17 +298,17 @@ function testGetChart() { @test:Config {dependsOn: [testGetChart]} function testListChart() { - log:printInfo("excelClient -> listCharts()"); - Chart[]|error response = excelClient->listCharts(workBookId, worksheetName, sessionId = sessionId); - if (response is Chart[]) { - string chartId = response[0]?.id ?: EMPTY_STRING; + Charts|error response = excelClient->listWorksheetCharts(workBookId, worksheetName, sessionId); + if response is Charts { + Chart[] charts = response?.value ?: []; + string chartId = charts[0]?.id ?: EMPTY_STRING; test:assertNotEquals(chartId, EMPTY_STRING, "Found 0 charts"); } else { test:assertFail(response.toString()); } } -float height = 99; +decimal height = 99; Chart updateChart = { height: height, left: 99 @@ -332,10 +316,9 @@ Chart updateChart = { @test:Config {dependsOn: [testListChart]} function testUpdateChart() { - log:printInfo("excelClient -> updateChart()"); - Chart|error response = excelClient->updateChart(workBookId, worksheetName, chartName, updateChart, sessionId); - if (response is Chart) { - float responseHeight = response?.height ?: 0; + Chart|error response = excelClient->updateWorksheetChart(workBookId, worksheetName, chartName, updateChart, sessionId); + if response is Chart { + decimal|string|int responseHeight = response?.height ?: 0; test:assertEquals(responseHeight, height, "Chart is not updated"); } else { test:assertFail(response.toString()); @@ -344,55 +327,48 @@ function testUpdateChart() { @test:Config {dependsOn: [testUpdateChart]} function testGetChartImage() { - log:printInfo("excelClient -> getChartImage()"); - string|error response = excelClient->getChartImage(workBookId, worksheetName, chartName, sessionId = sessionId); - if (response is error) { + Image|error response = excelClient->getWorksheetChartImage(workBookId, worksheetName, chartName, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {dependsOn: [testGetChartImage]} function testResetData() { - log:printInfo("excelClient -> resetChartData()"); - error? response = excelClient->resetChartData(workBookId, worksheetName, chartName, "A1:B3", AUTO, sessionId); - if (response is error) { + error|http:Response response = excelClient->setWorksheetChartData(workBookId, worksheetName, chartName, {sourceData:"A1:B3", seriesBy: "Auto"}, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {dependsOn: [testResetData]} function testSetPosition() { - log:printInfo("excelClient -> setChartPosition()"); - error? response = excelClient->setChartPosition(workBookId, worksheetName, chartName, "D3", sessionId = sessionId); - if (response is error) { + error|http:Response response = excelClient->setWorksheetChartPosition(workBookId, worksheetName, chartName, { startCell: "D3" }, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {dependsOn: [testSetPosition]} function testDeleteChart() { - log:printInfo("excelClient -> deleteChart()"); - error? response = excelClient->deleteChart(workBookId, worksheetName, chartName, sessionId); - if (response is error) { + error|http:Response response = excelClient->deleteWorksheetChart(workBookId, worksheetName, chartName, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {} function testGetWorkbookApplication() { - log:printInfo("excelClient -> getWorkbookApplication()"); - - WorkbookApplication|error response = excelClient->getWorkbookApplication(workBookId, sessionId); - if (response is error) { + Application|error response = excelClient->getWorkbookApplication(workBookId, sessionId); + if response is error { test:assertFail(response.toString()); } } @test:Config {} function testCalculateWorkbookApplication() { - log:printInfo("excelClient -> calculateWorkbookApplication()"); - error? response = excelClient->calculateWorkbookApplication(workBookId, FULL, sessionId); - if (response is error) { + error|http:Response response = excelClient->calculateWorkbookApplication(workBookId, {calculationType: "Full"}, sessionId); + if response is error { test:assertFail(response.toString()); } } diff --git a/ballerina/types.bal b/ballerina/types.bal index 45a4fd4..bf75cb8 100644 --- a/ballerina/types.bal +++ b/ballerina/types.bal @@ -1,215 +1,559 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. +// AUTO-GENERATED FILE. DO NOT MODIFY. +// This file is auto-generated by the Ballerina OpenAPI tool. +import ballerina/constraint; import ballerina/http; -import ballerinax/'client.config; -# Client configuration details. +# Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint. @display {label: "Connection Config"} public type ConnectionConfig record {| - *config:ConnectionConfig; # Configurations related to client authentication - http:BearerTokenConfig|config:OAuth2RefreshTokenGrantConfig auth; + http:BearerTokenConfig|OAuth2RefreshTokenGrantConfig auth; + # The HTTP version understood by the client + http:HttpVersion httpVersion = http:HTTP_2_0; + # Configurations related to HTTP/1.x protocol + ClientHttp1Settings http1Settings?; + # Configurations related to HTTP/2 protocol + http:ClientHttp2Settings http2Settings?; + # The maximum time to wait (in seconds) for a response before closing the connection + decimal timeout = 60; + # The choice of setting `forwarded`/`x-forwarded` header + string forwarded = "disable"; + # Configurations associated with request pooling + http:PoolConfiguration poolConfig?; + # HTTP caching related configurations + http:CacheConfig cache?; + # Specifies the way of handling compression (`accept-encoding`) header + http:Compression compression = http:COMPRESSION_AUTO; + # Configurations associated with the behaviour of the Circuit Breaker + http:CircuitBreakerConfig circuitBreaker?; + # Configurations associated with retrying + http:RetryConfig retryConfig?; + # Configurations associated with inbound response size limits + http:ResponseLimitConfigs responseLimits?; + # SSL/TLS-related options + http:ClientSecureSocket secureSocket?; + # Proxy server related options + http:ProxyConfig proxy?; + # Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default + boolean validation = true; |}; -# Represents worksheet properties. -# -# + id - Returns a value that uniquely identifies the worksheet in a given workbook. The value of the identifier remains -# the same even when the worksheet is renamed or moved -# + position - The zero-based position of the worksheet within the workbook -# + name - Worksheet name -# + visibility - The visibility of the worksheet -@display {label: "Worksheet"} +# Provides settings related to HTTP/1.x protocol. +public type ClientHttp1Settings record {| + # Specifies whether to reuse a connection for multiple requests + http:KeepAlive keepAlive = http:KEEPALIVE_AUTO; + # The chunking behaviour of the request + http:Chunking chunking = http:CHUNKING_AUTO; + # Proxy server related options + ProxyConfig proxy?; +|}; + +# Proxy server configurations to be used with the HTTP client endpoint. +public type ProxyConfig record {| + # Host name of the proxy server + string host = ""; + # Proxy server port + int port = 0; + # Proxy server username + string userName = ""; + # Proxy server password + @display {label: "", kind: "password"} + string password = ""; +|}; + +# OAuth2 Refresh Token Grant Configs +public type OAuth2RefreshTokenGrantConfig record {| + *http:OAuth2RefreshTokenGrantConfig; + # Refresh URL + string refreshUrl = "https://login.microsoftonline.com/organizations/oauth2/v2.0/token"; +|}; + +public type FormatProtection record { + *Entity; + boolean? formulaHidden?; + boolean? locked?; +}; + +public type Icon record { + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int:Signed32 index?; + string set?; +}; + +public type NamedItem record { + *Entity; + string? comment?; + string? name?; + string scope?; + string? 'type?; + Json? value?; + boolean visible?; + Worksheet? worksheet?; +}; + +public type Json record { +}; + public type Worksheet record { - string & readonly id?; - @display {label: "Position"} + *Entity; + string? name?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} int position?; - @display {label: "Worksheet Name"} - string name?; - Visibility visibility?; -}; - -# Represents cell properties. -# -# + address - Represents the range reference in A1-style. Address value will contain the Sheet reference -# (e.g. Sheet1!A1:B4) -# + addressLocal - Represents cell reference in the language of the user -# + columnIndex - Represents the column number of the first cell in the range. Zero-indexed -# + formulas - Represents the formula in A1-style notation -# + formulasLocal - Represents the formula in A1-style notation, in the user's language and number-formatting locale. -# For example, the English "=SUM(A1, 1.5)" formula would become "=SUMME(A1; 1,5)" in German -# + formulasR1C1 - Represents the formula in R1C1-style notation -# + hidden - Represents if cell is hidden -# + numberFormat - Excel's number format code for the given cell -# + rowIndex - Returns the row number of the first cell in the range. Zero-indexed -# + text - Text values of the specified range. The Text value will not depend on the cell width. The # sign substitution -# that happens in Excel UI will not affect the text value returned by the API -# + valueTypes - Represents the type of data of each cell. The data returned could be of type string, number, or a -# boolean. Cell that contain an error will return the error string -# + values - Raw value of the specified cell -@display {label: "Cell"} -public type Cell record { - string address; - string addressLocal; - int columnIndex; - json formulas; - json formulasLocal; - json formulasR1C1; - boolean hidden; - json numberFormat; - int rowIndex; - json text; - json valueTypes; - json[][] values; -}; - -# Represents the Excel application that manages the workbook. -# -# + calculationMode - Returns the calculation mode used in the workbook -@display {label: "Workbook Application"} -public type WorkbookApplication record { - string calculationMode; -}; - -# Represents an Excel table. -# -# + id - Returns a value that uniquely identifies the table in a given workbook. The value of the identifier remains the -# same even when the table is renamed. This property should be interpreted as an opaque string value and -# should not be parsed to any other type -# + name - Name of the table -# + showHeaders - Indicates whether the header row is visible or not. This value can be set to show or remove the header -# row -# + showTotals - Indicates whether the total row is visible or not. This value can be set to show or remove the total -# row. -# + style - Constant value that represents the Table style. The possible values are: TableStyleLight1 thru -# TableStyleLight21, TableStyleMedium1 thru TableStyleMedium28, TableStyleStyleDark1 thru TableStyleStyleDark11. A custom user-defined style present in the workbook can also be specified. -# + highlightFirstColumn - Indicates whether the first column contains special formatting -# + highlightLastColumn - Indicates whether the last column contains special formatting -# + showBandedColumns - Indicates whether the columns show banded formatting in which odd columns are highlighted -# differently from even ones to make reading the table easier -# + showBandedRows - Indicates whether the rows show banded formatting in which odd rows are highlighted differently -# from even ones to make reading the table easier -# + showFilterButton - Indicates whether the filter buttons are visible at the top of each column header. Setting this -# is only allowed if the table contains a header row -# + legacyId - Legacy Id used in older Excle clients. The value of the identifier remains the same even when the table -# is renamed. This property should be interpreted as an opaque string value and should not be parsed to -# any other type -@display {label: "Table"} + string visibility?; + Chart[] charts?; + NamedItem[] names?; + PivotTable[] pivotTables?; + WorksheetProtection? protection?; + Table[] tables?; +}; + +public type ApplyTo record { + string applyTo?; +}; + +public type ChartTitle record { + *Entity; + boolean? overlay?; + string? text?; + boolean visible?; + ChartTitleFormat? format?; +}; + +public type ChartAxes record { + *Entity; + ChartAxis? categoryAxis?; + ChartAxis? seriesAxis?; + ChartAxis? valueAxis?; +}; + +public type Row record { + *Entity; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int index?; + # The values in the table row + (string|int|decimal?)[][] values?; +}; + +public type WorksheetProtectionOptions record { + boolean allowAutoFilter?; + boolean allowDeleteColumns?; + boolean allowDeleteRows?; + boolean allowFormatCells?; + boolean allowFormatColumns?; + boolean allowFormatRows?; + boolean allowInsertColumns?; + boolean allowInsertHyperlinks?; + boolean allowInsertRows?; + boolean allowPivotTables?; + boolean allowSort?; +}; + +public type ChartAxis record { + *Entity; + Json? majorUnit?; + Json? maximum?; + Json? minimum?; + Json? minorUnit?; + ChartAxisFormat? format?; + ChartGridlines? majorGridlines?; + ChartGridlines? minorGridlines?; + ChartAxisTitle? title?; +}; + +public type ChartSeriesCollection record { + ChartSeries[] value?; +}; + +public type NewChart record { + string 'type?; + string? sourceData?; + string seriesBy?; +}; + +public type ChartDataLabels record { + *Entity; + string? position?; + string? separator?; + boolean? showBubbleSize?; + boolean? showCategoryName?; + boolean? showLegendKey?; + boolean? showPercentage?; + boolean? showSeriesName?; + boolean? showValue?; + ChartDataLabelFormat? format?; +}; + +public type ChartAxisFormat record { + *Entity; + ChartFont? font?; + ChartLineFormat? line?; +}; + +public type Formula record { + string? name?; + string? formula?; + string? comment?; +}; + +public type ChartPoint record { + *Entity; + Json? value?; + ChartPointFormat? format?; +}; + +public type Chart record { + *Entity; + decimal|string|int height?; + decimal|string|int left?; + string? name?; + decimal|string|int top?; + decimal|string|int width?; + ChartAxes? axes?; + ChartDataLabels? dataLabels?; + ChartAreaFormat? format?; + ChartLegend? legend?; + ChartSeries[] series?; + ChartTitle? title?; + Worksheet? worksheet?; +}; + +public type Columns record { + Column[] value?; +}; + +public type ChartLegendFormat record { + *Entity; + ChartFill? fill?; + ChartFont? font?; +}; + +public type ChartLegend record { + *Entity; + boolean? overlay?; + string? position?; + boolean visible?; + ChartLegendFormat? format?; +}; + +public type ChartGridlinesFormat record { + *Entity; + ChartLineFormat? line?; +}; + +public type ChartPointFormat record { + *Entity; + ChartFill? fill?; +}; + +public type Rows record { + Row[] value?; +}; + +public type NewNamedItem record { + string? name?; + Json? reference?; + string? comment?; +}; + +public type Worksheets record { + Worksheet[] value?; +}; + +public type WorksheetProtection record { + *Entity; + WorksheetProtectionOptions? options?; + boolean protected?; +}; + +public type RangeFill record { + *Entity; + string? color?; +}; + +public type RangeSort record { + *Entity; +}; + +public type PivotTable record { + *Entity; + string? name?; + Worksheet? worksheet?; +}; + +public type ChartFill record { + *Entity; +}; + +public type Column record { + *Entity; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int index?; + string? name?; + # The values in the table row + (string|int|decimal?)[][] values?; + Filter? filter?; +}; + +public type Charts record { + Chart[] value?; +}; + +public type RangeBorder record { + *Entity; + string? color?; + string? sideIndex?; + string? style?; + string? weight?; +}; + +public type SortField record { + boolean 'ascending?; + string? color?; + string dataOption?; + Icon? icon?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int 'key?; + string sortOn?; +}; + +public type Shift record { + string shift?; +}; + +public type WorkbookPivotTables record { + PivotTable[] value?; +}; + +public type ChartDataLabelFormat record { + *Entity; + ChartFill? fill?; + ChartFont? font?; +}; + +public type RangeFont record { + *Entity; + boolean? bold?; + string? color?; + boolean? italic?; + string? name?; + decimal|string|"-INF"|"INF"|"NaN"? size?; + string? underline?; +}; + +public type ChartAreaFormat record { + *Entity; + ChartFill? fill?; + ChartFont? font?; +}; + +public type SessionInfo record { + string? id?; + boolean? persistChanges?; +}; + +public type ChartSeries record { + *Entity; + string? name?; + ChartSeriesFormat? format?; + ChartPoint[] points?; +}; + +public type ChartSeriesFormat record { + *Entity; + ChartFill? fill?; + ChartLineFormat? line?; +}; + +public type NewRow record { + int? index?; + (string|int|decimal|anydata?)[] values?; +}; + +public type Filter record { + *Entity; + FilterCriteria? criteria?; +}; + +public type ChartAxisTitle record { + *Entity; + string? text?; + boolean visible?; + ChartAxisTitleFormat? format?; +}; + +public type ChartLineFormat record { + *Entity; + string? color?; +}; + +public type PersistChanges record { + boolean persistChanges?; +}; + +public type RangeView record { + *Entity; + Json? cellAddresses?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int columnCount?; + Json? formulas?; + Json? formulasLocal?; + Json? formulasR1C1?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int index?; + Json? numberFormat?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int rowCount?; + Json? text?; + Json? valueTypes?; + Json? values?; + RangeView[] rows?; +}; + +public type Entity record { + string id?; +}; + +public type Across record { + boolean across?; +}; + +public type ChartTitleFormat record { + *Entity; + ChartFill? fill?; + ChartFont? font?; +}; + +public type ChartFont record { + *Entity; + boolean? bold?; + string? color?; + boolean? italic?; + string? name?; + decimal|string|"-INF"|"INF"|"NaN"? size?; + string? underline?; +}; + +public type NamedItems record { + NamedItem[] value?; +}; + +public type ChartAxisTitleFormat record { + *Entity; + ChartFont? font?; +}; + +public type Image record { + string? value?; +}; + +public type Position record { + string? startCell?; + string? endCell?; +}; + +public type Application record { + *Entity; + string calculationMode?; +}; + +public type ChartGridlines record { + *Entity; + boolean visible?; + ChartGridlinesFormat? format?; +}; + +public type Range record { + *Entity; + string? address?; + string? addressLocal?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int cellCount?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int columnCount?; + boolean? columnHidden?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int columnIndex?; + Json? formulas?; + Json? formulasLocal?; + Json? formulasR1C1?; + boolean? hidden?; + Json? numberFormat?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int rowCount?; + boolean? rowHidden?; + @constraint:Int {minValue: -2147483648, maxValue: 2147483647} + int rowIndex?; + Json? text?; + Json? valueTypes?; + Json? values?; + RangeFormat? format?; + RangeSort? sort?; + Worksheet? worksheet?; +}; + +public type RangeFormat record { + *Entity; + decimal|string|"-INF"|"INF"|"NaN"? columnWidth?; + string? horizontalAlignment?; + decimal|string|"-INF"|"INF"|"NaN"? rowHeight?; + string? verticalAlignment?; + boolean? wrapText?; + RangeBorder[] borders?; + RangeFill? fill?; + RangeFont? font?; + FormatProtection? protection?; +}; + +public type Tables record { + Table[] value?; +}; + +public type CalculationType record { + string calculationType?; +}; + +public type TableSort record { + *Entity; + (SortField?)[] fields?; + boolean matchCase?; + string method?; +}; + +public type SetData record { + string? sourceData?; + string seriesBy?; +}; + +public type NewTable record { + string? address?; + boolean hasHeaders?; +}; + public type Table record { - string & readonly id?; - @display {label: "Table Name"} - string name?; - @display {label: "Show Headers?"} - boolean showHeaders?; - @display {label: "Show Totals"} - boolean showTotals?; - @display {label: "Table Style"} - string style?; - @display {label: "Highlight First Column?"} + *Entity; boolean highlightFirstColumn?; - @display {label: "Highlight Last Column?"} boolean highlightLastColumn?; - @display {label: "Show Banded Columns?"} + string? name?; boolean showBandedColumns?; - @display {label: "Show Banded Rows?"} boolean showBandedRows?; - @display {label: "Show Filter Button?"} boolean showFilterButton?; - string & readonly legacyId?; + boolean showHeaders?; + boolean showTotals?; + string? style?; + Column[] columns?; + Row[] rows?; + TableSort? sort?; + Worksheet? worksheet?; }; -# Represents row properties. -# -# + index - Returns the index number of the row within the rows collection of the table. Zero-indexed -# + values - Represents the raw values of the specified range. The data returned could be of type string, number, or a -# boolean. Cell that contain an error will return the error strings -@display {label: "Row"} -public type Row record { - int index; - json[][] values; -}; - -# Chart object in a workbook. -# -# + id - Chart ID -# + height - The height, in points, of the chart object -# + left - The distance, in points, from the left side of the chart to the worksheet origin -# + name - The name of a chart -# + top - The distance, in points, from the top edge of the object to the top of row 1 (on a worksheet) or the top of -# the chart area (on a chart) -# + width - The width, in points, of the chart object -@display {label: "Chart"} -public type Chart record { - string & readonly id?; - @display {label: "Chart Height"} - float height?; - @display {label: "Distance from Left"} - float left?; - @display {label: "Chart Name"} - string name?; - @display {label: "Distance from Top"} - float top?; - @display {label: "Chart Width"} - float width?; -}; - -# Represents column properties. -# -# + id - A unique key that identifies the column within the table. This property should be interpreted as an opaque -# string value and should not be parsed to any other type -# + name - The name of the table column -# + index - The index number of the column within the columns collection of the table -# + values - Raw values of the specified range. The data returned could be of type string, number, or a -# boolean. Cell that contain an error will return the error string -@display {label: "Column"} -public type Column record { - string id; - string name?; - int index; - json[][] values; -}; - -# Specifies the calculation type to use in the workbook. -@display {label: "Calculation Type"} -public enum CalculationType { - RECALCULATE = "Recalculate", - FULL = "Full", - FULL_REBUILD = "FullRebuild" -} - -# Specifies the way columns or rows are used as data series on the chart. -@display {label: "Series By"} -public enum SeriesBy { - AUTO = "Auto", - BY_COLUMNS = "Columns", - BY_ROWS = "Rows" -} - -# Specifies Visibility options in the worksheet. -@display {label: "Visibility"} -public enum Visibility { - VISIBLE = "Visible", - HIDDEN = "Hidden", - VERY_HIDDEN = "VeryHidden" -} - -# Specifies the options used to scale the chart to the specified dimensions. -@display {label: "Chart Fitting Mode"} -public enum FittingMode { - FIT = "Fit", - FIT_AND_CENTER = "FitAndCenter", - FILL = "Fill" -} +public type FilterCriteria record { + string? color?; + string? criterion1?; + string? criterion2?; + string dynamicCriteria?; + string filterOn?; + Icon? icon?; + string operator?; + Json? values?; +}; diff --git a/ballerina/utils.bal b/ballerina/utils.bal index 9840d2f..29d80ca 100644 --- a/ballerina/utils.bal +++ b/ballerina/utils.bal @@ -1,124 +1,223 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/http; - -isolated function createRequestParams(string[] pathParameters, string workbookIdOrPath, string? sessionId = (), string? query = ()) -returns [string, map?]|error { - string path = check createRequestPath(pathParameters, workbookIdOrPath, query); - map? headers = createRequestHeader(sessionId); - return [path, headers]; -} - -isolated function createRequestPath(string[] pathParameters, string workbookIdOrPath, string? query = ()) -returns string|error { - string path = EMPTY_STRING; - string[] baseParameters = workbookIdOrPath.endsWith(".xlsx") ? [ME, DRIVE, ROOT + COLON, workbookIdOrPath + COLON, - WORKBOOK] : [ME, DRIVE, ITEMS, workbookIdOrPath, WORKBOOK]; - - path = check createPath(path, baseParameters); - path = check createPath(path, pathParameters); - path = query is string ? (path + query) : path; - return path; +// AUTO-GENERATED FILE. DO NOT MODIFY. +// This file is auto-generated by the Ballerina OpenAPI tool. + +import ballerina/url; + +type SimpleBasicType string|boolean|int|float|decimal; + +# Represents encoding mechanism details. +type Encoding record { + # Defines how multiple values are delimited + string style = FORM; + # Specifies whether arrays and objects should generate as separate fields + boolean explode = true; + # Specifies the custom content type + string contentType?; + # Specifies the custom headers + map headers?; +}; + +enum EncodingStyle { + DEEPOBJECT, FORM, SPACEDELIMITED, PIPEDELIMITED } -isolated function createRequestHeader(string? sessionId = ()) returns map? { - if sessionId is string { - map headers = {}; - headers[WORKBOOK_SESSION_ID] = sessionId; - return headers; +final Encoding & readonly defaultEncoding = {}; + +# Serialize the record according to the deepObject style. +# +# + parent - Parent record name +# + anyRecord - Record to be serialized +# + return - Serialized record as a string +isolated function getDeepObjectStyleRequest(string parent, record {} anyRecord) returns string { + string[] recordArray = []; + foreach [string, anydata] [key, value] in anyRecord.entries() { + if value is SimpleBasicType { + recordArray.push(parent + "[" + key + "]" + "=" + getEncodedUri(value.toString())); + } else if value is SimpleBasicType[] { + recordArray.push(getSerializedArray(parent + "[" + key + "]" + "[]", value, DEEPOBJECT, true)); + } else if value is record {} { + string nextParent = parent + "[" + key + "]"; + recordArray.push(getDeepObjectStyleRequest(nextParent, value)); + } else if value is record {}[] { + string nextParent = parent + "[" + key + "]"; + recordArray.push(getSerializedRecordArray(nextParent, value, DEEPOBJECT)); + } + recordArray.push("&"); } - return; + _ = recordArray.pop(); + return string:'join("", ...recordArray); } -isolated function createPath(string currentpath, string[] pathParameters) returns string|error { - string path = currentpath; - if (pathParameters.length() > 0) { - foreach string element in pathParameters { - if (!element.startsWith(FORWARD_SLASH)) { - path = path + FORWARD_SLASH; +# Serialize the record according to the form style. +# +# + parent - Parent record name +# + anyRecord - Record to be serialized +# + explode - Specifies whether arrays and objects should generate separate parameters +# + return - Serialized record as a string +isolated function getFormStyleRequest(string parent, record {} anyRecord, boolean explode = true) returns string { + string[] recordArray = []; + if explode { + foreach [string, anydata] [key, value] in anyRecord.entries() { + if (value is SimpleBasicType) { + recordArray.push(key, "=", getEncodedUri(value.toString())); + } else if (value is SimpleBasicType[]) { + recordArray.push(getSerializedArray(key, value, explode = explode)); + } else if (value is record {}) { + recordArray.push(getFormStyleRequest(parent, value, explode)); + } + recordArray.push("&"); + } + _ = recordArray.pop(); + } else { + foreach [string, anydata] [key, value] in anyRecord.entries() { + if (value is SimpleBasicType) { + recordArray.push(key, ",", getEncodedUri(value.toString())); + } else if (value is SimpleBasicType[]) { + recordArray.push(getSerializedArray(key, value, explode = false)); + } else if (value is record {}) { + recordArray.push(getFormStyleRequest(parent, value, explode)); } - path += element; + recordArray.push(","); } + _ = recordArray.pop(); } - return path; + return string:'join("", ...recordArray); } -isolated function setOptionalParamsToPath(string currentPath, int? width, int? height, string? fittingMode) -returns string { - string path = currentPath; - if (width is int) { - if (height is int) { - if (fittingMode is string) { - path = currentPath + OPEN_ROUND_BRACKET + WIDTH + EQUAL_SIGN + width.toString() + COMMA + HEIGHT + - EQUAL_SIGN + height.toString() + COMMA + FITTING_MODE + EQUAL_SIGN + fittingMode.toString() + - CLOSE_ROUND_BRACKET; - } else { - path = currentPath + OPEN_ROUND_BRACKET + WIDTH + EQUAL_SIGN + width.toString() + COMMA + HEIGHT + - EQUAL_SIGN + height.toString() + CLOSE_ROUND_BRACKET; +# Serialize arrays. +# +# + arrayName - Name of the field with arrays +# + anyArray - Array to be serialized +# + style - Defines how multiple values are delimited +# + explode - Specifies whether arrays and objects should generate separate parameters +# + return - Serialized array as a string +isolated function getSerializedArray(string arrayName, anydata[] anyArray, string style = "form", boolean explode = true) returns string { + string key = arrayName; + string[] arrayValues = []; + if (anyArray.length() > 0) { + if (style == FORM && !explode) { + arrayValues.push(key, "="); + foreach anydata i in anyArray { + arrayValues.push(getEncodedUri(i.toString()), ","); + } + } else if (style == SPACEDELIMITED && !explode) { + arrayValues.push(key, "="); + foreach anydata i in anyArray { + arrayValues.push(getEncodedUri(i.toString()), "%20"); + } + } else if (style == PIPEDELIMITED && !explode) { + arrayValues.push(key, "="); + foreach anydata i in anyArray { + arrayValues.push(getEncodedUri(i.toString()), "|"); + } + } else if (style == DEEPOBJECT) { + foreach anydata i in anyArray { + arrayValues.push(key, "[]", "=", getEncodedUri(i.toString()), "&"); } } else { - path = currentPath + OPEN_ROUND_BRACKET + WIDTH + EQUAL_SIGN + width.toString() + CLOSE_ROUND_BRACKET; + foreach anydata i in anyArray { + arrayValues.push(key, "=", getEncodedUri(i.toString()), "&"); + } } + _ = arrayValues.pop(); } - return path; + return string:'join("", ...arrayValues); } -isolated function handleResponse(http:Response httpResponse) returns map|error { - if (httpResponse.statusCode == http:STATUS_OK || httpResponse.statusCode == http:STATUS_CREATED) { - final json jsonResponse = check httpResponse.getJsonPayload(); - return >jsonResponse; - } else if (httpResponse.statusCode == http:STATUS_NO_CONTENT) { - return {}; +# Serialize the array of records according to the form style. +# +# + parent - Parent record name +# + value - Array of records to be serialized +# + style - Defines how multiple values are delimited +# + explode - Specifies whether arrays and objects should generate separate parameters +# + return - Serialized record as a string +isolated function getSerializedRecordArray(string parent, record {}[] value, string style = FORM, boolean explode = true) returns string { + string[] serializedArray = []; + if style == DEEPOBJECT { + int arayIndex = 0; + foreach var recordItem in value { + serializedArray.push(getDeepObjectStyleRequest(parent + "[" + arayIndex.toString() + "]", recordItem), "&"); + arayIndex = arayIndex + 1; + } + } else { + if (!explode) { + serializedArray.push(parent, "="); + } + foreach var recordItem in value { + serializedArray.push(getFormStyleRequest(parent, recordItem, explode), ","); + } } - json jsonResponse = check httpResponse.getJsonPayload(); - return error(jsonResponse.toString()); -} - -isolated function getWorksheetArray(http:Response response) returns Worksheet[]|error { - map handledResponse = check handleResponse(response); - return check handledResponse[VALUE].cloneWithType(WorkSheetArray); -} - -isolated function getRowArray(http:Response response) returns Row[]|error { - map handledResponse = check handleResponse(response); - return check handledResponse[VALUE].cloneWithType(RowArray); + _ = serializedArray.pop(); + return string:'join("", ...serializedArray); } -isolated function getColumnArray(http:Response response) returns Column[]|error { - map handledResponse = check handleResponse(response); - return check handledResponse[VALUE].cloneWithType(ColumnArray); +# Get Encoded URI for a given value. +# +# + value - Value to be encoded +# + return - Encoded string +isolated function getEncodedUri(anydata value) returns string { + string|error encoded = url:encode(value.toString(), "UTF8"); + if (encoded is string) { + return encoded; + } else { + return value.toString(); + } } -isolated function getTableArray(http:Response response) returns Table[]|error { - map handledResponse = check handleResponse(response); - return check handledResponse[VALUE].cloneWithType(TableArray); +# Generate query path with query parameter. +# +# + queryParam - Query parameter map +# + encodingMap - Details on serialization mechanism +# + return - Returns generated Path or error at failure of client initialization +isolated function getPathForQueryParam(map queryParam, map encodingMap = {}) returns string|error { + string[] param = []; + if (queryParam.length() > 0) { + param.push("?"); + foreach var [key, value] in queryParam.entries() { + if value is () { + _ = queryParam.remove(key); + continue; + } + Encoding encodingData = encodingMap.hasKey(key) ? encodingMap.get(key) : defaultEncoding; + if (value is SimpleBasicType) { + param.push(key, "=", getEncodedUri(value.toString())); + } else if (value is SimpleBasicType[]) { + param.push(getSerializedArray(key, value, encodingData.style, encodingData.explode)); + } else if (value is record {}) { + if (encodingData.style == DEEPOBJECT) { + param.push(getDeepObjectStyleRequest(key, value)); + } else { + param.push(getFormStyleRequest(key, value, encodingData.explode)); + } + } else { + param.push(key, "=", value.toString()); + } + param.push("&"); + } + _ = param.pop(); + } + string restOfPath = string:'join("", ...param); + return restOfPath; } -isolated function getChartArray(http:Response response) returns Chart[]|error { - map handledResponse = check handleResponse(response); - return check handledResponse[VALUE].cloneWithType(ChartArray); +# Generate header map for given header values. +# +# + headerParam - Headers map +# + return - Returns generated map or error at failure of client initialization +isolated function getMapForHeaders(map headerParam) returns map { + map headerMap = {}; + foreach var [key, value] in headerParam.entries() { + if value is string || value is string[] { + headerMap[key] = value; + } else if value is int[] { + string[] stringArray = []; + foreach int intValue in value { + stringArray.push(intValue.toString()); + } + headerMap[key] = stringArray; + } else if value is SimpleBasicType { + headerMap[key] = value.toString(); + } + } + return headerMap; } - -type WorkSheetArray Worksheet[]; - -type RowArray Row[]; - -type ColumnArray Column[]; - -type TableArray Table[]; - -type ChartArray Chart[]; diff --git a/docs/open-api-spec/Sanitations.md b/docs/open-api-spec/Sanitations.md new file mode 100644 index 0000000..65bccab --- /dev/null +++ b/docs/open-api-spec/Sanitations.md @@ -0,0 +1,226 @@ +# Sanitizations for Open API Specification +This connector is generated using OpenApi description for an OData service metadata [API version graph1.0](https://github.com/microsoft/OpenAPI.NET.OData/blob/master/docs/oas3_0_0/graph1.0.json), and the following sanitizations were applied to the specification before client generation. + +1. Modified parameters and records names: + + | Name | New Name | + |----------------------------|----------------------------------------------------| + | driveItem-id | workbook-id | + | workbookWorksheet-id | workbook-worksheet-id | + | workbookChart-id | workbook-chart-id | + | workbookNamedItem-id | workbook-named-item-id | + | workbookTable-id | workbook-table-id | + | workbookTableColumn-id | workbook-table-column-id | + | microsoft.graph.workbookWorksheet | Worksheet | + | microsoft.graph.workbookTable | Table | + | microsoft.graph.workbookRange | Range | + | microsoft.graph.workbookChart | Chart | + | microsoft.graph.workbookTableColumn | TableColumn | + | microsoft.graph.workbookTableRow | TableRow | + | microsoft.graph.entity | Entity | + | microsoft.graph.workbookPivotTable | PivotTable | + | microsoft.graph.workbookRangeFormat | RangeFormat | + | microsoft.graph.workbookChartGridlines | ChartGridlines | + | microsoft.graph.workbookSortField | SortField | + | microsoft.graph.workbookChartGridlines | ChartGridlines | + | microsoft.graph.workbookApplication | Application | + | microsoft.graph.workbookChartAxisTitleFormat | ChartAxisTitleFormat | + | microsoft.graph.workbookChartFont | ChartFont | + | microsoft.graph.workbookChartTitleFormat | ChartTitleFormat | + | microsoft.graph.workbookRangeView | RangeView | + | microsoft.graph.workbookChartLineFormat | ChartLineFormat | + | microsoft.graph.workbookChartAxisTitle | ChartAxisTitle | + | microsoft.graph.workbookChartSeriesFormat | ChartSeriesFormat | + | microsoft.graph.workbookChartSeries | ChartSeries | + | microsoft.graph.workbookChartAreaFormat | ChartAreaFormat | + | microsoft.graph.workbookRangeFont | RangeFont | + | microsoft.graph.workbookChartDataLabelFormat | ChartDataLabelFormat | + | microsoft.graph.workbookSortField | SortField | + | microsoft.graph.workbookIcon | Icon | + | microsoft.graph.workbookRangeBorder | RangeBorder | + | microsoft.graph.workbookChartFill | ChartFill | + | microsoft.graph.workbookPivotTable | PivotTable | + | microsoft.graph.workbookRangeSort | RangeSort | + | microsoft.graph.workbookRangeFill | RangeFill | + | microsoft.graph.workbookWorksheetProtection | WorksheetProtection | + | microsoft.graph.workbookChartPointFormat | ChartPointFormat | + | microsoft.graph.workbookChartGridlinesFormat | ChartGridlinesFormat | + | microsoft.graph.workbookChartLegend | ChartLegend | + | microsoft.graph.workbookChartLegendFormat | ChartLegendFormat | + | microsoft.graph.workbookFormatProtection | FormatProtection | + | microsoft.graph.workbookChartPoint | ChartPoint | + | microsoft.graph.workbookChartAxisFormat | hartAxisFormat | + | microsoft.graph.workbookChartDataLabels | ChartDataLabels | + | microsoft.graph.workbookChartAxis | ChartAxis | + | microsoft.graph.workbookWorksheetProtectionOptions | WorksheetProtectionOptions | + | microsoft.graph.workbookChartAxes | ChartAxes | + | microsoft.graph.workbookChartTitle | ChartTitle | + | microsoft.graph.workbookFilter | Filter | + | microsoft.graph.workbookFilterCriteria | FilterCriteria | + +2. Change following URL prefix: + - `/workbooks/{workbook-id}/workbook` changed to `/me/drive/items/{workbook-id}/workbook` + - `/me/insights/shared/{sharedInsight-id}/resource/Range/` changed to `/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/` + +3. This open API definition is related to OData Service. Hence, we have to add missing properties manually. `securitySchemes` under the `components` and `seesionId` parameter under the `parameters`. + ``` + "securitySchemes": { + "OAuth2": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "tokenUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token", + "authorizationUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token", + "scopes": { + "write": "Files.ReadWrite" + } + } + } + } + } + ``` + ``` + "sessionId": { + "name": "workbook-session-id", + "description": "The ID of the session", + "in": "header", + "required": false, + "schema": { + type: "string" + } + } + ``` + 4. Update the following paths oprationId with the given name in the below table, add the `sessionId` as the parameter and add the another tag value as `workbook` in the `tags`. + + | Path | Operation Id | + |------------------------------------------------------------| -------------------- | + |/me/drive/items/{workbook-id}/workbook/application | getWorkbookApplication | + |/me/drive/items/{workbook-id}/workbook/application/calculate| calculateWorkbookApplication| + |/me/drive/items/{workbook-id}/workbook/names | listWorkbookNames| + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}| getWorkbookNamedItem , updateWorkbookNamedItem, deleteWorkbookNamedItem| + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts| listWorkbookNamedItemCharts| + |/me/drive/items/{workbook-id}/{workbook-id}/workbook/names/add | addWorkbookName| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/names/addFormulaLocal|addWorkbookNameFormulaLocal| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables |listWorkbookTables| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}| getWorkbookTable, updateWorkbookTable, deleteWorkbookTable | + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/columns| listWorkbookTableColumns, createWorkbookTableColumns| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}|getWorkbookTableColumn, updateWorkbbokColumn, deleteWorkbookColumn| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range| getWorkbookTableRange| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/rows|listWorkbookTableRows| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbook-table-row-id}|getWorkbookTableRow, updateWorkbookTableRow, deleteWorkbookTableRow| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add|addWorkbookTableRow| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts|listWorkbookTableCharts| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbookChart-id}|getWorkbookTableWorksheetChart, updateWorkbookTableWorksheetChart, deleteWorkbookTableWorksheetWChart| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbookChart-id}/setData|setWorkbooktableWorksheetChartData| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbookChart-id}/setPosition|setWorkbookTableWorksheeetChartPosition| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbookChart-id}/series|listWorkbookTableWorksheetChartSeries| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add|addWorkbookTableWorksheetChart| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})|getWorkbookTableCell| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}|getWorkbookTableWorksheetNamedItem, updateWorkbookTableWorksheetNamedItem, deleteWorkbookTableWorksheetNamedItem| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add| addWorkbookTableWorksheetName| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/addFormulaLocal|addWorkbookTableWorksheetFormula| + |/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add|addWorkbookTableWorksheetTable| + |/me/drive/items/{workbook-id}/workbook/tables/add| addWorkbookTable| + |/me/drive/items/{workbook-id}/workbook/worksheets| listWorksheets, createWorksheets| + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}| getWorksheet updateWorksheet deleteWorksheet| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts| listWorksheetCharts| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}| getWorksheetChart updateWorksheetChart deleteWorksheetChart| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/image|getWorksheetChartImage| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/image(width={width},height={height},fittingMode={fittingMode})|getWorksheetChartImageWithWidthHeightFittingMode| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/image(width={width},height={height})| getWorksheetChartImageWithWidthHeight| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/image(width={width})|getWorksheetChartImageWithWidth| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/setData|setWorksheetChartData| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/setPosition|setWorksheetChartPosition| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbookChart-id}/series|listWorksheetChartSeries createWorksheetChartSeries| + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add|addWorksheetChart| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})| getWorksheetChartItemAt| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})| getWorksheetCell| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})|getWorksheetRangeWithAddress| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}|getWorksheetNamedItem updateWorksheetNamedItem deleteWorksheetNamedItem| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add|addWorksheetName| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/addFormulaLocal|addWorksheetFormula| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables|listWorksheetPivotTables| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables|listWorksheetTables| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}|getWorksheetTable updateWorksheetTable deleteWorksheetTable| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns|listWorksheetTableColumns| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range|getWorksheetTableColumnRange| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range| getWorksheetTableRange| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows|listWorksheetTableRows| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbook-table-row-id}|getWorksheetTableRow, updateWorksheetTableRow, deleteWorksheetTableRow + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add|addWorksheetTableRow| + /me/drive/items/{workbook-id}/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add|addWorksheetTable| + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsAbove | getWorksheetRangeRowAbove | + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsBelow | getWorksheetRangeRowsBelow | + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsBelow(count={count}) | getWorksheetRangeRowBelowWithCount | + |/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsAbove(count={count})| getWorksheetRangeRowAboveWithCount | + | /me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsAfter| getWorksheetColumnsAfterRange | + | /me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsAfter(count={count}) | getWorksheetColumnsAfterRangeWithCount | + | /me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsBefore | getWorksheetColumnsBeforeRange | + | /me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsBefore(count={count}) | getWorksheetColumnsBeforeRangeWithCount | + + Additionally, you must create two copies of each of the APIs below and change the path and parameters to include the missing API. + + Eg: If the `path` is `/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/clear` and `operationId` is `clearWorkbookNamedItemRange`, `path` and `id` of copied APIs should be changed according to the below format: + + | Path | Operation Id | + |------------------------------------------------------------| -------------------- | + |/me/drive/items/{workbook-id}/**workbook/worksheets/{workbook-worksheet-id}/range(address='
')**/clear|clear**Worksheet**Range| + |/me/drive/items/{workbook-id}/**workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range**/clear|clear**WorkbookTableColumn**Range| + + + | Path | Operation Id | + |------------------------------------------------------------| -------------------- | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/boundingRect(anotherRange={anotherRange}) | getWorkbookNamedItemRangeBoundingRect | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/cell(row={row},column={column}) | getWorkbookNamedItemRangeCell | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/clear | clearWorkbookNamedItemRange | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/column(column={column}) |getWorkbookNamedItemRangeColumn| + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/column(column={column}) | getWorkbookNamedItemRangeColumn | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/delete | deleteWorkbookNamedItemRange | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/entireColumn | getWorkbookNamedItemRangeEntireColumn | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/entireRow | getWorkbookNameRangeEntireRow | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/insert | insertWorkbookNamedItemRange | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/intersection(anotherRange={anotherRange}) | getWorkbookNamedItemRangeIntersection | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/lastCell | getWorkbookNamedItemRangeLastCell | + | /me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/lastColumn | getWorkbookNamedItemRangeLastColumn | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/lastRow | getWorkbookNamedItemRangeLastRow | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/merge | mergeWorkbookNamedItemRange | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) | getWorkbookNamedItemOffsetRange | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) | getWorkbookNamedItemResizedRange | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/row(row={row}) | getWorkbookNamedItemRangeRow | + |/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/unmerge | unmergeWorkbookNamedItemRange | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/usedRange | getWorkbookNamedItemUsedRnge | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/usedRange(valuesOnly={valuesOnly}) | getWorkbookNamedItemUsedRngeWithValuesOnly | + |/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/visibleView | getWorkbookNamedItemRangeVisibleView | + +5. Since `Object` type converts to `Record` when generating client, change `values` field defintion of `Row` and `Column` from `Json` to the following defintion + ``` + "values": { + "type": "array", + "description": "The values in the table row", + "items": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "number", + "nullable": true + } + ] + } + } + } + ``` +6. Remove `"format": "int32"`. +6. Run the following OpenAPI CLI command to generate the client: + ``` + bal openapi -i docs/open-api-spec/openapi.json --mode client --client-methods remote --tags workbook -o ballerina/ + ``` +7. Clean the generated `types.bal` file. Easily, you can do it by removing the records which start with `microsoft`. diff --git a/docs/open-api-spec/openapi.json b/docs/open-api-spec/openapi.json new file mode 100644 index 0000000..59ddc3f --- /dev/null +++ b/docs/open-api-spec/openapi.json @@ -0,0 +1,609160 @@ +{ + "openapi": "3.0.1", + "info": { + "title": "OData Service for namespace microsoft.graph", + "description": "This OData service is located at https://graph.microsoft.com/v1.0", + "version": "1.0.1" + }, + "servers": [ + { + "url": "https://graph.microsoft.com/v1.0" + } + ], + "paths": { + "/contracts": { + "get": { + "tags": [ + "contracts.contract" + ], + "summary": "Get entities from contracts", + "operationId": "contracts.contract.ListContract", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "contractType", + "contractType desc", + "customerId", + "customerId desc", + "defaultDomainName", + "defaultDomainName desc", + "displayName", + "displayName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "contractType", + "customerId", + "defaultDomainName", + "displayName" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of contract", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contract" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "contracts.contract" + ], + "summary": "Add new entity to contracts", + "operationId": "contracts.contract.CreateContract", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contract" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contract" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/contracts/{contract-id}": { + "get": { + "tags": [ + "contracts.contract" + ], + "summary": "Get entity from contracts by key", + "operationId": "contracts.contract.GetContract", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "contractType", + "customerId", + "defaultDomainName", + "displayName" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contract" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "contracts.contract" + ], + "summary": "Update entity in contracts", + "operationId": "contracts.contract.UpdateContract", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contract" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "contracts.contract" + ], + "summary": "Delete entity from contracts", + "operationId": "contracts.contract.DeleteContract", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/contracts/{contract-id}/checkMemberGroups": { + "post": { + "tags": [ + "contracts.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "contracts.checkMemberGroups", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/contracts/{contract-id}/getMemberGroups": { + "post": { + "tags": [ + "contracts.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "contracts.getMemberGroups", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/contracts/{contract-id}/getMemberObjects": { + "post": { + "tags": [ + "contracts.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "contracts.getMemberObjects", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/contracts/{contract-id}/restore": { + "post": { + "tags": [ + "contracts.Actions" + ], + "summary": "Invoke action restore", + "operationId": "contracts.restore", + "parameters": [ + { + "name": "contract-id", + "in": "path", + "description": "key: id of contract", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contract" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/contracts/getByIds": { + "post": { + "tags": [ + "contracts.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "contracts.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceAppManagement": { + "get": { + "tags": [ + "deviceAppManagement.deviceAppManagement" + ], + "summary": "Get deviceAppManagement", + "operationId": "deviceAppManagement.deviceAppManagement.GetDeviceAppManagement", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "microsoftStoreForBusinessLastSuccessfulSyncDateTime", + "isEnabledForMicrosoftStoreForBusiness", + "microsoftStoreForBusinessLanguage", + "microsoftStoreForBusinessLastCompletedApplicationSyncTime", + "mobileApps", + "mobileAppCategories", + "mobileAppConfigurations", + "vppTokens", + "managedAppPolicies", + "iosManagedAppProtections", + "androidManagedAppProtections", + "defaultManagedAppProtections", + "targetedManagedAppConfigurations", + "mdmWindowsInformationProtectionPolicies", + "windowsInformationProtectionPolicies", + "managedAppRegistrations", + "managedAppStatuses", + "managedEBooks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "mobileApps", + "mobileAppCategories", + "mobileAppConfigurations", + "vppTokens", + "managedAppPolicies", + "iosManagedAppProtections", + "androidManagedAppProtections", + "defaultManagedAppProtections", + "targetedManagedAppConfigurations", + "mdmWindowsInformationProtectionPolicies", + "windowsInformationProtectionPolicies", + "managedAppRegistrations", + "managedAppStatuses", + "managedEBooks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceAppManagement" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.deviceAppManagement" + ], + "summary": "Update deviceAppManagement", + "operationId": "deviceAppManagement.deviceAppManagement.UpdateDeviceAppManagement", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceAppManagement" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/androidManagedAppProtections": { + "get": { + "tags": [ + "deviceAppManagement.androidManagedAppProtection" + ], + "summary": "Get androidManagedAppProtections from deviceAppManagement", + "operationId": "deviceAppManagement.ListAndroidManagedAppProtections", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc", + "periodOfflineBeforeAccessCheck", + "periodOfflineBeforeAccessCheck desc", + "periodOnlineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck desc", + "allowedInboundDataTransferSources", + "allowedInboundDataTransferSources desc", + "allowedOutboundDataTransferDestinations", + "allowedOutboundDataTransferDestinations desc", + "organizationalCredentialsRequired", + "organizationalCredentialsRequired desc", + "allowedOutboundClipboardSharingLevel", + "allowedOutboundClipboardSharingLevel desc", + "dataBackupBlocked", + "dataBackupBlocked desc", + "deviceComplianceRequired", + "deviceComplianceRequired desc", + "managedBrowserToOpenLinksRequired", + "managedBrowserToOpenLinksRequired desc", + "saveAsBlocked", + "saveAsBlocked desc", + "periodOfflineBeforeWipeIsEnforced", + "periodOfflineBeforeWipeIsEnforced desc", + "pinRequired", + "pinRequired desc", + "maximumPinRetries", + "maximumPinRetries desc", + "simplePinBlocked", + "simplePinBlocked desc", + "minimumPinLength", + "minimumPinLength desc", + "pinCharacterSet", + "pinCharacterSet desc", + "periodBeforePinReset", + "periodBeforePinReset desc", + "allowedDataStorageLocations", + "allowedDataStorageLocations desc", + "contactSyncBlocked", + "contactSyncBlocked desc", + "printBlocked", + "printBlocked desc", + "fingerprintBlocked", + "fingerprintBlocked desc", + "disableAppPinIfDevicePinIsSet", + "disableAppPinIfDevicePinIsSet desc", + "minimumRequiredOsVersion", + "minimumRequiredOsVersion desc", + "minimumWarningOsVersion", + "minimumWarningOsVersion desc", + "minimumRequiredAppVersion", + "minimumRequiredAppVersion desc", + "minimumWarningAppVersion", + "minimumWarningAppVersion desc", + "isAssigned", + "isAssigned desc", + "screenCaptureBlocked", + "screenCaptureBlocked desc", + "disableAppEncryptionIfDeviceEncryptionIsEnabled", + "disableAppEncryptionIfDeviceEncryptionIsEnabled desc", + "encryptAppData", + "encryptAppData desc", + "deployedAppCount", + "deployedAppCount desc", + "minimumRequiredPatchVersion", + "minimumRequiredPatchVersion desc", + "minimumWarningPatchVersion", + "minimumWarningPatchVersion desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "periodOfflineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck", + "allowedInboundDataTransferSources", + "allowedOutboundDataTransferDestinations", + "organizationalCredentialsRequired", + "allowedOutboundClipboardSharingLevel", + "dataBackupBlocked", + "deviceComplianceRequired", + "managedBrowserToOpenLinksRequired", + "saveAsBlocked", + "periodOfflineBeforeWipeIsEnforced", + "pinRequired", + "maximumPinRetries", + "simplePinBlocked", + "minimumPinLength", + "pinCharacterSet", + "periodBeforePinReset", + "allowedDataStorageLocations", + "contactSyncBlocked", + "printBlocked", + "fingerprintBlocked", + "disableAppPinIfDevicePinIsSet", + "minimumRequiredOsVersion", + "minimumWarningOsVersion", + "minimumRequiredAppVersion", + "minimumWarningAppVersion", + "isAssigned", + "screenCaptureBlocked", + "disableAppEncryptionIfDeviceEncryptionIsEnabled", + "encryptAppData", + "deployedAppCount", + "minimumRequiredPatchVersion", + "minimumWarningPatchVersion", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of androidManagedAppProtection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.androidManagedAppProtection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.androidManagedAppProtection" + ], + "summary": "Create new navigation property to androidManagedAppProtections for deviceAppManagement", + "operationId": "deviceAppManagement.CreateAndroidManagedAppProtections", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.androidManagedAppProtection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.androidManagedAppProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}": { + "get": { + "tags": [ + "deviceAppManagement.androidManagedAppProtection" + ], + "summary": "Get androidManagedAppProtections from deviceAppManagement", + "operationId": "deviceAppManagement.GetAndroidManagedAppProtections", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "periodOfflineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck", + "allowedInboundDataTransferSources", + "allowedOutboundDataTransferDestinations", + "organizationalCredentialsRequired", + "allowedOutboundClipboardSharingLevel", + "dataBackupBlocked", + "deviceComplianceRequired", + "managedBrowserToOpenLinksRequired", + "saveAsBlocked", + "periodOfflineBeforeWipeIsEnforced", + "pinRequired", + "maximumPinRetries", + "simplePinBlocked", + "minimumPinLength", + "pinCharacterSet", + "periodBeforePinReset", + "allowedDataStorageLocations", + "contactSyncBlocked", + "printBlocked", + "fingerprintBlocked", + "disableAppPinIfDevicePinIsSet", + "minimumRequiredOsVersion", + "minimumWarningOsVersion", + "minimumRequiredAppVersion", + "minimumWarningAppVersion", + "isAssigned", + "screenCaptureBlocked", + "disableAppEncryptionIfDeviceEncryptionIsEnabled", + "encryptAppData", + "deployedAppCount", + "minimumRequiredPatchVersion", + "minimumWarningPatchVersion", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.androidManagedAppProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.androidManagedAppProtection" + ], + "summary": "Update the navigation property androidManagedAppProtections in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateAndroidManagedAppProtections", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.androidManagedAppProtection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.androidManagedAppProtection" + ], + "summary": "Delete navigation property androidManagedAppProtections for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteAndroidManagedAppProtections", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps": { + "get": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.ListApps", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "mobileAppIdentifier", + "mobileAppIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedMobileApp", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedMobileApp" + ], + "summary": "Create new navigation property to apps for deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.CreateApps", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}": { + "get": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.GetApps", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedMobileApp" + ], + "summary": "Update the navigation property apps in deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.UpdateApps", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedMobileApp" + ], + "summary": "Delete navigation property apps for deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.DeleteApps", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary": { + "get": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Get deploymentSummary from deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.GetDeploymentSummary", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "configurationDeployedUserCount", + "lastRefreshTime", + "configurationDeploymentSummaryPerApp", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Update the navigation property deploymentSummary in deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.UpdateDeploymentSummary", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.androidManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Delete navigation property deploymentSummary for deviceAppManagement", + "operationId": "deviceAppManagement.androidManagedAppProtections.DeleteDeploymentSummary", + "parameters": [ + { + "name": "androidManagedAppProtection-id", + "in": "path", + "description": "key: id of androidManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "androidManagedAppProtection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/defaultManagedAppProtections": { + "get": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtection" + ], + "summary": "Get defaultManagedAppProtections from deviceAppManagement", + "operationId": "deviceAppManagement.ListDefaultManagedAppProtections", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc", + "periodOfflineBeforeAccessCheck", + "periodOfflineBeforeAccessCheck desc", + "periodOnlineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck desc", + "allowedInboundDataTransferSources", + "allowedInboundDataTransferSources desc", + "allowedOutboundDataTransferDestinations", + "allowedOutboundDataTransferDestinations desc", + "organizationalCredentialsRequired", + "organizationalCredentialsRequired desc", + "allowedOutboundClipboardSharingLevel", + "allowedOutboundClipboardSharingLevel desc", + "dataBackupBlocked", + "dataBackupBlocked desc", + "deviceComplianceRequired", + "deviceComplianceRequired desc", + "managedBrowserToOpenLinksRequired", + "managedBrowserToOpenLinksRequired desc", + "saveAsBlocked", + "saveAsBlocked desc", + "periodOfflineBeforeWipeIsEnforced", + "periodOfflineBeforeWipeIsEnforced desc", + "pinRequired", + "pinRequired desc", + "maximumPinRetries", + "maximumPinRetries desc", + "simplePinBlocked", + "simplePinBlocked desc", + "minimumPinLength", + "minimumPinLength desc", + "pinCharacterSet", + "pinCharacterSet desc", + "periodBeforePinReset", + "periodBeforePinReset desc", + "allowedDataStorageLocations", + "allowedDataStorageLocations desc", + "contactSyncBlocked", + "contactSyncBlocked desc", + "printBlocked", + "printBlocked desc", + "fingerprintBlocked", + "fingerprintBlocked desc", + "disableAppPinIfDevicePinIsSet", + "disableAppPinIfDevicePinIsSet desc", + "minimumRequiredOsVersion", + "minimumRequiredOsVersion desc", + "minimumWarningOsVersion", + "minimumWarningOsVersion desc", + "minimumRequiredAppVersion", + "minimumRequiredAppVersion desc", + "minimumWarningAppVersion", + "minimumWarningAppVersion desc", + "appDataEncryptionType", + "appDataEncryptionType desc", + "screenCaptureBlocked", + "screenCaptureBlocked desc", + "encryptAppData", + "encryptAppData desc", + "disableAppEncryptionIfDeviceEncryptionIsEnabled", + "disableAppEncryptionIfDeviceEncryptionIsEnabled desc", + "minimumRequiredSdkVersion", + "minimumRequiredSdkVersion desc", + "customSettings", + "customSettings desc", + "deployedAppCount", + "deployedAppCount desc", + "minimumRequiredPatchVersion", + "minimumRequiredPatchVersion desc", + "minimumWarningPatchVersion", + "minimumWarningPatchVersion desc", + "faceIdBlocked", + "faceIdBlocked desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "periodOfflineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck", + "allowedInboundDataTransferSources", + "allowedOutboundDataTransferDestinations", + "organizationalCredentialsRequired", + "allowedOutboundClipboardSharingLevel", + "dataBackupBlocked", + "deviceComplianceRequired", + "managedBrowserToOpenLinksRequired", + "saveAsBlocked", + "periodOfflineBeforeWipeIsEnforced", + "pinRequired", + "maximumPinRetries", + "simplePinBlocked", + "minimumPinLength", + "pinCharacterSet", + "periodBeforePinReset", + "allowedDataStorageLocations", + "contactSyncBlocked", + "printBlocked", + "fingerprintBlocked", + "disableAppPinIfDevicePinIsSet", + "minimumRequiredOsVersion", + "minimumWarningOsVersion", + "minimumRequiredAppVersion", + "minimumWarningAppVersion", + "appDataEncryptionType", + "screenCaptureBlocked", + "encryptAppData", + "disableAppEncryptionIfDeviceEncryptionIsEnabled", + "minimumRequiredSdkVersion", + "customSettings", + "deployedAppCount", + "minimumRequiredPatchVersion", + "minimumWarningPatchVersion", + "faceIdBlocked", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of defaultManagedAppProtection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.defaultManagedAppProtection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtection" + ], + "summary": "Create new navigation property to defaultManagedAppProtections for deviceAppManagement", + "operationId": "deviceAppManagement.CreateDefaultManagedAppProtections", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.defaultManagedAppProtection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.defaultManagedAppProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}": { + "get": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtection" + ], + "summary": "Get defaultManagedAppProtections from deviceAppManagement", + "operationId": "deviceAppManagement.GetDefaultManagedAppProtections", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "periodOfflineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck", + "allowedInboundDataTransferSources", + "allowedOutboundDataTransferDestinations", + "organizationalCredentialsRequired", + "allowedOutboundClipboardSharingLevel", + "dataBackupBlocked", + "deviceComplianceRequired", + "managedBrowserToOpenLinksRequired", + "saveAsBlocked", + "periodOfflineBeforeWipeIsEnforced", + "pinRequired", + "maximumPinRetries", + "simplePinBlocked", + "minimumPinLength", + "pinCharacterSet", + "periodBeforePinReset", + "allowedDataStorageLocations", + "contactSyncBlocked", + "printBlocked", + "fingerprintBlocked", + "disableAppPinIfDevicePinIsSet", + "minimumRequiredOsVersion", + "minimumWarningOsVersion", + "minimumRequiredAppVersion", + "minimumWarningAppVersion", + "appDataEncryptionType", + "screenCaptureBlocked", + "encryptAppData", + "disableAppEncryptionIfDeviceEncryptionIsEnabled", + "minimumRequiredSdkVersion", + "customSettings", + "deployedAppCount", + "minimumRequiredPatchVersion", + "minimumWarningPatchVersion", + "faceIdBlocked", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.defaultManagedAppProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtection" + ], + "summary": "Update the navigation property defaultManagedAppProtections in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateDefaultManagedAppProtections", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.defaultManagedAppProtection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtection" + ], + "summary": "Delete navigation property defaultManagedAppProtections for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteDefaultManagedAppProtections", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps": { + "get": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.ListApps", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "mobileAppIdentifier", + "mobileAppIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedMobileApp", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedMobileApp" + ], + "summary": "Create new navigation property to apps for deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.CreateApps", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}": { + "get": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.GetApps", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedMobileApp" + ], + "summary": "Update the navigation property apps in deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.UpdateApps", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedMobileApp" + ], + "summary": "Delete navigation property apps for deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.DeleteApps", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary": { + "get": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Get deploymentSummary from deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.GetDeploymentSummary", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "configurationDeployedUserCount", + "lastRefreshTime", + "configurationDeploymentSummaryPerApp", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Update the navigation property deploymentSummary in deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.UpdateDeploymentSummary", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.defaultManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Delete navigation property deploymentSummary for deviceAppManagement", + "operationId": "deviceAppManagement.defaultManagedAppProtections.DeleteDeploymentSummary", + "parameters": [ + { + "name": "defaultManagedAppProtection-id", + "in": "path", + "description": "key: id of defaultManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "defaultManagedAppProtection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/iosManagedAppProtections": { + "get": { + "tags": [ + "deviceAppManagement.iosManagedAppProtection" + ], + "summary": "Get iosManagedAppProtections from deviceAppManagement", + "operationId": "deviceAppManagement.ListIosManagedAppProtections", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc", + "periodOfflineBeforeAccessCheck", + "periodOfflineBeforeAccessCheck desc", + "periodOnlineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck desc", + "allowedInboundDataTransferSources", + "allowedInboundDataTransferSources desc", + "allowedOutboundDataTransferDestinations", + "allowedOutboundDataTransferDestinations desc", + "organizationalCredentialsRequired", + "organizationalCredentialsRequired desc", + "allowedOutboundClipboardSharingLevel", + "allowedOutboundClipboardSharingLevel desc", + "dataBackupBlocked", + "dataBackupBlocked desc", + "deviceComplianceRequired", + "deviceComplianceRequired desc", + "managedBrowserToOpenLinksRequired", + "managedBrowserToOpenLinksRequired desc", + "saveAsBlocked", + "saveAsBlocked desc", + "periodOfflineBeforeWipeIsEnforced", + "periodOfflineBeforeWipeIsEnforced desc", + "pinRequired", + "pinRequired desc", + "maximumPinRetries", + "maximumPinRetries desc", + "simplePinBlocked", + "simplePinBlocked desc", + "minimumPinLength", + "minimumPinLength desc", + "pinCharacterSet", + "pinCharacterSet desc", + "periodBeforePinReset", + "periodBeforePinReset desc", + "allowedDataStorageLocations", + "allowedDataStorageLocations desc", + "contactSyncBlocked", + "contactSyncBlocked desc", + "printBlocked", + "printBlocked desc", + "fingerprintBlocked", + "fingerprintBlocked desc", + "disableAppPinIfDevicePinIsSet", + "disableAppPinIfDevicePinIsSet desc", + "minimumRequiredOsVersion", + "minimumRequiredOsVersion desc", + "minimumWarningOsVersion", + "minimumWarningOsVersion desc", + "minimumRequiredAppVersion", + "minimumRequiredAppVersion desc", + "minimumWarningAppVersion", + "minimumWarningAppVersion desc", + "isAssigned", + "isAssigned desc", + "appDataEncryptionType", + "appDataEncryptionType desc", + "minimumRequiredSdkVersion", + "minimumRequiredSdkVersion desc", + "deployedAppCount", + "deployedAppCount desc", + "faceIdBlocked", + "faceIdBlocked desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "periodOfflineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck", + "allowedInboundDataTransferSources", + "allowedOutboundDataTransferDestinations", + "organizationalCredentialsRequired", + "allowedOutboundClipboardSharingLevel", + "dataBackupBlocked", + "deviceComplianceRequired", + "managedBrowserToOpenLinksRequired", + "saveAsBlocked", + "periodOfflineBeforeWipeIsEnforced", + "pinRequired", + "maximumPinRetries", + "simplePinBlocked", + "minimumPinLength", + "pinCharacterSet", + "periodBeforePinReset", + "allowedDataStorageLocations", + "contactSyncBlocked", + "printBlocked", + "fingerprintBlocked", + "disableAppPinIfDevicePinIsSet", + "minimumRequiredOsVersion", + "minimumWarningOsVersion", + "minimumRequiredAppVersion", + "minimumWarningAppVersion", + "isAssigned", + "appDataEncryptionType", + "minimumRequiredSdkVersion", + "deployedAppCount", + "faceIdBlocked", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of iosManagedAppProtection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosManagedAppProtection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.iosManagedAppProtection" + ], + "summary": "Create new navigation property to iosManagedAppProtections for deviceAppManagement", + "operationId": "deviceAppManagement.CreateIosManagedAppProtections", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosManagedAppProtection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosManagedAppProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}": { + "get": { + "tags": [ + "deviceAppManagement.iosManagedAppProtection" + ], + "summary": "Get iosManagedAppProtections from deviceAppManagement", + "operationId": "deviceAppManagement.GetIosManagedAppProtections", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "periodOfflineBeforeAccessCheck", + "periodOnlineBeforeAccessCheck", + "allowedInboundDataTransferSources", + "allowedOutboundDataTransferDestinations", + "organizationalCredentialsRequired", + "allowedOutboundClipboardSharingLevel", + "dataBackupBlocked", + "deviceComplianceRequired", + "managedBrowserToOpenLinksRequired", + "saveAsBlocked", + "periodOfflineBeforeWipeIsEnforced", + "pinRequired", + "maximumPinRetries", + "simplePinBlocked", + "minimumPinLength", + "pinCharacterSet", + "periodBeforePinReset", + "allowedDataStorageLocations", + "contactSyncBlocked", + "printBlocked", + "fingerprintBlocked", + "disableAppPinIfDevicePinIsSet", + "minimumRequiredOsVersion", + "minimumWarningOsVersion", + "minimumRequiredAppVersion", + "minimumWarningAppVersion", + "isAssigned", + "appDataEncryptionType", + "minimumRequiredSdkVersion", + "deployedAppCount", + "faceIdBlocked", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "apps", + "deploymentSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosManagedAppProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.iosManagedAppProtection" + ], + "summary": "Update the navigation property iosManagedAppProtections in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateIosManagedAppProtections", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosManagedAppProtection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.iosManagedAppProtection" + ], + "summary": "Delete navigation property iosManagedAppProtections for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteIosManagedAppProtections", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps": { + "get": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.ListApps", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "mobileAppIdentifier", + "mobileAppIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedMobileApp", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedMobileApp" + ], + "summary": "Create new navigation property to apps for deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.CreateApps", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}": { + "get": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.GetApps", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedMobileApp" + ], + "summary": "Update the navigation property apps in deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.UpdateApps", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedMobileApp" + ], + "summary": "Delete navigation property apps for deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.DeleteApps", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary": { + "get": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Get deploymentSummary from deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.GetDeploymentSummary", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "configurationDeployedUserCount", + "lastRefreshTime", + "configurationDeploymentSummaryPerApp", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Update the navigation property deploymentSummary in deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.UpdateDeploymentSummary", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.iosManagedAppProtections.managedAppPolicyDeploymentSummary" + ], + "summary": "Delete navigation property deploymentSummary for deviceAppManagement", + "operationId": "deviceAppManagement.iosManagedAppProtections.DeleteDeploymentSummary", + "parameters": [ + { + "name": "iosManagedAppProtection-id", + "in": "path", + "description": "key: id of iosManagedAppProtection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosManagedAppProtection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppPolicies": { + "get": { + "tags": [ + "deviceAppManagement.managedAppPolicy" + ], + "summary": "Get managedAppPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.ListManagedAppPolicies", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppPolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedAppPolicy" + ], + "summary": "Create new navigation property to managedAppPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.CreateManagedAppPolicies", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedAppPolicy" + ], + "summary": "Get managedAppPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.GetManagedAppPolicies", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedAppPolicy" + ], + "summary": "Update the navigation property managedAppPolicies in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateManagedAppPolicies", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedAppPolicy" + ], + "summary": "Delete navigation property managedAppPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteManagedAppPolicies", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.managedAppPolicies.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps" + ] + }, + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.managedAppPolicies.targetApps", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps" + ] + }, + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedAppPolicies.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedAppPolicies.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedAppRegistrations": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistration" + ], + "summary": "Get managedAppRegistrations from deviceAppManagement", + "operationId": "deviceAppManagement.ListManagedAppRegistrations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "applicationVersion", + "applicationVersion desc", + "managementSdkVersion", + "managementSdkVersion desc", + "platformVersion", + "platformVersion desc", + "deviceType", + "deviceType desc", + "deviceTag", + "deviceTag desc", + "deviceName", + "deviceName desc", + "flaggedReasons", + "flaggedReasons desc", + "userId", + "userId desc", + "appIdentifier", + "appIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastSyncDateTime", + "applicationVersion", + "managementSdkVersion", + "platformVersion", + "deviceType", + "deviceTag", + "deviceName", + "flaggedReasons", + "userId", + "appIdentifier", + "version", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppRegistration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedAppRegistration" + ], + "summary": "Create new navigation property to managedAppRegistrations for deviceAppManagement", + "operationId": "deviceAppManagement.CreateManagedAppRegistrations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistration" + ], + "summary": "Get managedAppRegistrations from deviceAppManagement", + "operationId": "deviceAppManagement.GetManagedAppRegistrations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastSyncDateTime", + "applicationVersion", + "managementSdkVersion", + "platformVersion", + "deviceType", + "deviceTag", + "deviceName", + "flaggedReasons", + "userId", + "appIdentifier", + "version", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedAppRegistration" + ], + "summary": "Update the navigation property managedAppRegistrations in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateManagedAppRegistrations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedAppRegistration" + ], + "summary": "Delete navigation property managedAppRegistrations for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteManagedAppRegistrations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Get appliedPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.ListAppliedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppPolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Create new navigation property to appliedPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.CreateAppliedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Get appliedPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.GetAppliedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Update the navigation property appliedPolicies in deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.UpdateAppliedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Delete navigation property appliedPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.DeleteAppliedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.managedAppRegistrations.appliedPolicies.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.managedAppRegistrations.appliedPolicies.targetApps", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedAppRegistrations.appliedPolicies.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedAppRegistrations.appliedPolicies.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Get intendedPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.ListIntendedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppPolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Create new navigation property to intendedPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.CreateIntendedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Get intendedPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.GetIntendedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Update the navigation property intendedPolicies in deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.UpdateIntendedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppPolicy" + ], + "summary": "Delete navigation property intendedPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.DeleteIntendedPolicies", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.managedAppRegistrations.intendedPolicies.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.managedAppRegistrations.intendedPolicies.targetApps", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedAppRegistrations.intendedPolicies.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedAppRegistrations.intendedPolicies.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppPolicy-id", + "in": "path", + "description": "key: id of managedAppPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppPolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppOperation" + ], + "summary": "Get operations from deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.ListOperations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "state", + "state desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "lastModifiedDateTime", + "state", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppOperation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppOperation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppOperation" + ], + "summary": "Create new navigation property to operations for deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.CreateOperations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppOperation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppOperation" + ], + "summary": "Get operations from deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.GetOperations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppOperation-id", + "in": "path", + "description": "key: id of managedAppOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppOperation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "lastModifiedDateTime", + "state", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppOperation" + ], + "summary": "Update the navigation property operations in deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.UpdateOperations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppOperation-id", + "in": "path", + "description": "key: id of managedAppOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppOperation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppOperation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedAppRegistrations.managedAppOperation" + ], + "summary": "Delete navigation property operations for deviceAppManagement", + "operationId": "deviceAppManagement.managedAppRegistrations.DeleteOperations", + "parameters": [ + { + "name": "managedAppRegistration-id", + "in": "path", + "description": "key: id of managedAppRegistration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppRegistration" + }, + { + "name": "managedAppOperation-id", + "in": "path", + "description": "key: id of managedAppOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppOperation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration()": { + "get": { + "tags": [ + "deviceAppManagement.Functions" + ], + "summary": "Invoke function getUserIdsWithFlaggedAppRegistration", + "operationId": "deviceAppManagement.managedAppRegistrations.getUserIdsWithFlaggedAppRegistration", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/deviceAppManagement/managedAppStatuses": { + "get": { + "tags": [ + "deviceAppManagement.managedAppStatus" + ], + "summary": "Get managedAppStatuses from deviceAppManagement", + "operationId": "deviceAppManagement.ListManagedAppStatuses", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedAppStatus" + ], + "summary": "Create new navigation property to managedAppStatuses for deviceAppManagement", + "operationId": "deviceAppManagement.CreateManagedAppStatuses", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedAppStatus" + ], + "summary": "Get managedAppStatuses from deviceAppManagement", + "operationId": "deviceAppManagement.GetManagedAppStatuses", + "parameters": [ + { + "name": "managedAppStatus-id", + "in": "path", + "description": "key: id of managedAppStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedAppStatus" + ], + "summary": "Update the navigation property managedAppStatuses in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateManagedAppStatuses", + "parameters": [ + { + "name": "managedAppStatus-id", + "in": "path", + "description": "key: id of managedAppStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedAppStatus" + ], + "summary": "Delete navigation property managedAppStatuses for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteManagedAppStatuses", + "parameters": [ + { + "name": "managedAppStatus-id", + "in": "path", + "description": "key: id of managedAppStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedAppStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks": { + "get": { + "tags": [ + "deviceAppManagement.managedEBook" + ], + "summary": "Get managedEBooks from deviceAppManagement", + "operationId": "deviceAppManagement.ListManagedEBooks", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "publisher", + "publisher desc", + "publishedDateTime", + "publishedDateTime desc", + "largeCover", + "largeCover desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "informationUrl", + "informationUrl desc", + "privacyInformationUrl", + "privacyInformationUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "publisher", + "publishedDateTime", + "largeCover", + "createdDateTime", + "lastModifiedDateTime", + "informationUrl", + "privacyInformationUrl", + "assignments", + "installSummary", + "deviceStates", + "userStateSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "installSummary", + "deviceStates", + "userStateSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedEBook", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedEBook" + ], + "summary": "Create new navigation property to managedEBooks for deviceAppManagement", + "operationId": "deviceAppManagement.CreateManagedEBooks", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedEBook" + ], + "summary": "Get managedEBooks from deviceAppManagement", + "operationId": "deviceAppManagement.GetManagedEBooks", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "publisher", + "publishedDateTime", + "largeCover", + "createdDateTime", + "lastModifiedDateTime", + "informationUrl", + "privacyInformationUrl", + "assignments", + "installSummary", + "deviceStates", + "userStateSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "installSummary", + "deviceStates", + "userStateSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedEBook" + ], + "summary": "Update the navigation property managedEBooks in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateManagedEBooks", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedEBook" + ], + "summary": "Delete navigation property managedEBooks for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteManagedEBooks", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.managedEBookAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.ListAssignments", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc", + "installIntent", + "installIntent desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target", + "installIntent" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedEBookAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedEBooks.managedEBookAssignment" + ], + "summary": "Create new navigation property to assignments for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.CreateAssignments", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.managedEBookAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.GetAssignments", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "managedEBookAssignment-id", + "in": "path", + "description": "key: id of managedEBookAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBookAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target", + "installIntent" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedEBooks.managedEBookAssignment" + ], + "summary": "Update the navigation property assignments in deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.UpdateAssignments", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "managedEBookAssignment-id", + "in": "path", + "description": "key: id of managedEBookAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBookAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedEBooks.managedEBookAssignment" + ], + "summary": "Delete navigation property assignments for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.DeleteAssignments", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "managedEBookAssignment-id", + "in": "path", + "description": "key: id of managedEBookAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBookAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.deviceInstallState" + ], + "summary": "Get deviceStates from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.ListDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deviceName", + "deviceName desc", + "deviceId", + "deviceId desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "installState", + "installState desc", + "errorCode", + "errorCode desc", + "osVersion", + "osVersion desc", + "osDescription", + "osDescription desc", + "userName", + "userName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceName", + "deviceId", + "lastSyncDateTime", + "installState", + "errorCode", + "osVersion", + "osDescription", + "userName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceInstallState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedEBooks.deviceInstallState" + ], + "summary": "Create new navigation property to deviceStates for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.CreateDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.deviceInstallState" + ], + "summary": "Get deviceStates from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.GetDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "deviceInstallState-id", + "in": "path", + "description": "key: id of deviceInstallState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceInstallState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceName", + "deviceId", + "lastSyncDateTime", + "installState", + "errorCode", + "osVersion", + "osDescription", + "userName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedEBooks.deviceInstallState" + ], + "summary": "Update the navigation property deviceStates in deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.UpdateDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "deviceInstallState-id", + "in": "path", + "description": "key: id of deviceInstallState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceInstallState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedEBooks.deviceInstallState" + ], + "summary": "Delete navigation property deviceStates for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.DeleteDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "deviceInstallState-id", + "in": "path", + "description": "key: id of deviceInstallState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceInstallState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.eBookInstallSummary" + ], + "summary": "Get installSummary from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.GetInstallSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "installedDeviceCount", + "failedDeviceCount", + "notInstalledDeviceCount", + "installedUserCount", + "failedUserCount", + "notInstalledUserCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.eBookInstallSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedEBooks.eBookInstallSummary" + ], + "summary": "Update the navigation property installSummary in deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.UpdateInstallSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.eBookInstallSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedEBooks.eBookInstallSummary" + ], + "summary": "Delete navigation property installSummary for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.DeleteInstallSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.managedEBooks.assign", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "managedEBookAssignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.userInstallStateSummary" + ], + "summary": "Get userStateSummary from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.ListUserStateSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userName", + "userName desc", + "installedDeviceCount", + "installedDeviceCount desc", + "failedDeviceCount", + "failedDeviceCount desc", + "notInstalledDeviceCount", + "notInstalledDeviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userName", + "installedDeviceCount", + "failedDeviceCount", + "notInstalledDeviceCount", + "deviceStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of userInstallStateSummary", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.userInstallStateSummary" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedEBooks.userInstallStateSummary" + ], + "summary": "Create new navigation property to userStateSummary for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.CreateUserStateSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userInstallStateSummary" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userInstallStateSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.userInstallStateSummary" + ], + "summary": "Get userStateSummary from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.GetUserStateSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userName", + "installedDeviceCount", + "failedDeviceCount", + "notInstalledDeviceCount", + "deviceStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userInstallStateSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedEBooks.userInstallStateSummary" + ], + "summary": "Update the navigation property userStateSummary in deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.UpdateUserStateSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userInstallStateSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedEBooks.userInstallStateSummary" + ], + "summary": "Delete navigation property userStateSummary for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.DeleteUserStateSummary", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.userStateSummary.deviceInstallState" + ], + "summary": "Get deviceStates from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.userStateSummary.ListDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deviceName", + "deviceName desc", + "deviceId", + "deviceId desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "installState", + "installState desc", + "errorCode", + "errorCode desc", + "osVersion", + "osVersion desc", + "osDescription", + "osDescription desc", + "userName", + "userName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceName", + "deviceId", + "lastSyncDateTime", + "installState", + "errorCode", + "osVersion", + "osDescription", + "userName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceInstallState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedEBooks.userStateSummary.deviceInstallState" + ], + "summary": "Create new navigation property to deviceStates for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.userStateSummary.CreateDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedEBooks.userStateSummary.deviceInstallState" + ], + "summary": "Get deviceStates from deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.userStateSummary.GetDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + }, + { + "name": "deviceInstallState-id", + "in": "path", + "description": "key: id of deviceInstallState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceInstallState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceName", + "deviceId", + "lastSyncDateTime", + "installState", + "errorCode", + "osVersion", + "osDescription", + "userName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedEBooks.userStateSummary.deviceInstallState" + ], + "summary": "Update the navigation property deviceStates in deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.userStateSummary.UpdateDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + }, + { + "name": "deviceInstallState-id", + "in": "path", + "description": "key: id of deviceInstallState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceInstallState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedEBooks.userStateSummary.deviceInstallState" + ], + "summary": "Delete navigation property deviceStates for deviceAppManagement", + "operationId": "deviceAppManagement.managedEBooks.userStateSummary.DeleteDeviceStates", + "parameters": [ + { + "name": "managedEBook-id", + "in": "path", + "description": "key: id of managedEBook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedEBook" + }, + { + "name": "userInstallStateSummary-id", + "in": "path", + "description": "key: id of userInstallStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userInstallStateSummary" + }, + { + "name": "deviceInstallState-id", + "in": "path", + "description": "key: id of deviceInstallState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceInstallState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mdmWindowsInformationProtectionPolicies": { + "get": { + "tags": [ + "deviceAppManagement.mdmWindowsInformationProtectionPolicy" + ], + "summary": "Get mdmWindowsInformationProtectionPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.ListMdmWindowsInformationProtectionPolicies", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc", + "enforcementLevel", + "enforcementLevel desc", + "enterpriseDomain", + "enterpriseDomain desc", + "enterpriseProtectedDomainNames", + "enterpriseProtectedDomainNames desc", + "protectionUnderLockConfigRequired", + "protectionUnderLockConfigRequired desc", + "dataRecoveryCertificate", + "dataRecoveryCertificate desc", + "revokeOnUnenrollDisabled", + "revokeOnUnenrollDisabled desc", + "rightsManagementServicesTemplateId", + "rightsManagementServicesTemplateId desc", + "azureRightsManagementServicesAllowed", + "azureRightsManagementServicesAllowed desc", + "iconsVisible", + "iconsVisible desc", + "protectedApps", + "protectedApps desc", + "exemptApps", + "exemptApps desc", + "enterpriseNetworkDomainNames", + "enterpriseNetworkDomainNames desc", + "enterpriseProxiedDomains", + "enterpriseProxiedDomains desc", + "enterpriseIPRanges", + "enterpriseIPRanges desc", + "enterpriseIPRangesAreAuthoritative", + "enterpriseIPRangesAreAuthoritative desc", + "enterpriseProxyServers", + "enterpriseProxyServers desc", + "enterpriseInternalProxyServers", + "enterpriseInternalProxyServers desc", + "enterpriseProxyServersAreAuthoritative", + "enterpriseProxyServersAreAuthoritative desc", + "neutralDomainResources", + "neutralDomainResources desc", + "indexingEncryptedStoresOrItemsBlocked", + "indexingEncryptedStoresOrItemsBlocked desc", + "smbAutoEncryptedFileExtensions", + "smbAutoEncryptedFileExtensions desc", + "isAssigned", + "isAssigned desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "enforcementLevel", + "enterpriseDomain", + "enterpriseProtectedDomainNames", + "protectionUnderLockConfigRequired", + "dataRecoveryCertificate", + "revokeOnUnenrollDisabled", + "rightsManagementServicesTemplateId", + "azureRightsManagementServicesAllowed", + "iconsVisible", + "protectedApps", + "exemptApps", + "enterpriseNetworkDomainNames", + "enterpriseProxiedDomains", + "enterpriseIPRanges", + "enterpriseIPRangesAreAuthoritative", + "enterpriseProxyServers", + "enterpriseInternalProxyServers", + "enterpriseProxyServersAreAuthoritative", + "neutralDomainResources", + "indexingEncryptedStoresOrItemsBlocked", + "smbAutoEncryptedFileExtensions", + "isAssigned", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mdmWindowsInformationProtectionPolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mdmWindowsInformationProtectionPolicy" + ], + "summary": "Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.CreateMdmWindowsInformationProtectionPolicies", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}": { + "get": { + "tags": [ + "deviceAppManagement.mdmWindowsInformationProtectionPolicy" + ], + "summary": "Get mdmWindowsInformationProtectionPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.GetMdmWindowsInformationProtectionPolicies", + "parameters": [ + { + "name": "mdmWindowsInformationProtectionPolicy-id", + "in": "path", + "description": "key: id of mdmWindowsInformationProtectionPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mdmWindowsInformationProtectionPolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "enforcementLevel", + "enterpriseDomain", + "enterpriseProtectedDomainNames", + "protectionUnderLockConfigRequired", + "dataRecoveryCertificate", + "revokeOnUnenrollDisabled", + "rightsManagementServicesTemplateId", + "azureRightsManagementServicesAllowed", + "iconsVisible", + "protectedApps", + "exemptApps", + "enterpriseNetworkDomainNames", + "enterpriseProxiedDomains", + "enterpriseIPRanges", + "enterpriseIPRangesAreAuthoritative", + "enterpriseProxyServers", + "enterpriseInternalProxyServers", + "enterpriseProxyServersAreAuthoritative", + "neutralDomainResources", + "indexingEncryptedStoresOrItemsBlocked", + "smbAutoEncryptedFileExtensions", + "isAssigned", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mdmWindowsInformationProtectionPolicy" + ], + "summary": "Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateMdmWindowsInformationProtectionPolicies", + "parameters": [ + { + "name": "mdmWindowsInformationProtectionPolicy-id", + "in": "path", + "description": "key: id of mdmWindowsInformationProtectionPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mdmWindowsInformationProtectionPolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mdmWindowsInformationProtectionPolicy" + ], + "summary": "Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteMdmWindowsInformationProtectionPolicies", + "parameters": [ + { + "name": "mdmWindowsInformationProtectionPolicy-id", + "in": "path", + "description": "key: id of mdmWindowsInformationProtectionPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mdmWindowsInformationProtectionPolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/syncMicrosoftStoreForBusinessApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action syncMicrosoftStoreForBusinessApps", + "operationId": "deviceAppManagement.syncMicrosoftStoreForBusinessApps", + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceAppManagement/mobileAppCategories": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppCategory" + ], + "summary": "Get mobileAppCategories from deviceAppManagement", + "operationId": "deviceAppManagement.ListMobileAppCategories", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "lastModifiedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mobileAppCategory", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileAppCategory" + ], + "summary": "Create new navigation property to mobileAppCategories for deviceAppManagement", + "operationId": "deviceAppManagement.CreateMobileAppCategories", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppCategory" + ], + "summary": "Get mobileAppCategories from deviceAppManagement", + "operationId": "deviceAppManagement.GetMobileAppCategories", + "parameters": [ + { + "name": "mobileAppCategory-id", + "in": "path", + "description": "key: id of mobileAppCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileAppCategory" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "lastModifiedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileAppCategory" + ], + "summary": "Update the navigation property mobileAppCategories in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateMobileAppCategories", + "parameters": [ + { + "name": "mobileAppCategory-id", + "in": "path", + "description": "key: id of mobileAppCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileAppCategory" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileAppCategory" + ], + "summary": "Delete navigation property mobileAppCategories for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteMobileAppCategories", + "parameters": [ + { + "name": "mobileAppCategory-id", + "in": "path", + "description": "key: id of mobileAppCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileAppCategory" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations": { + "get": { + "tags": [ + "deviceAppManagement.managedDeviceMobileAppConfiguration" + ], + "summary": "Get mobileAppConfigurations from deviceAppManagement", + "operationId": "deviceAppManagement.ListMobileAppConfigurations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "targetedMobileApps", + "targetedMobileApps desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "displayName", + "displayName desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "targetedMobileApps", + "createdDateTime", + "description", + "lastModifiedDateTime", + "displayName", + "version", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusSummary", + "userStatusSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusSummary", + "userStatusSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDeviceMobileAppConfiguration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.managedDeviceMobileAppConfiguration" + ], + "summary": "Create new navigation property to mobileAppConfigurations for deviceAppManagement", + "operationId": "deviceAppManagement.CreateMobileAppConfigurations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}": { + "get": { + "tags": [ + "deviceAppManagement.managedDeviceMobileAppConfiguration" + ], + "summary": "Get mobileAppConfigurations from deviceAppManagement", + "operationId": "deviceAppManagement.GetMobileAppConfigurations", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "targetedMobileApps", + "createdDateTime", + "description", + "lastModifiedDateTime", + "displayName", + "version", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusSummary", + "userStatusSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusSummary", + "userStatusSummary" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.managedDeviceMobileAppConfiguration" + ], + "summary": "Update the navigation property mobileAppConfigurations in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateMobileAppConfigurations", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.managedDeviceMobileAppConfiguration" + ], + "summary": "Delete navigation property mobileAppConfigurations for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteMobileAppConfigurations", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.ListAssignments", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDeviceMobileAppConfigurationAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationAssignment" + ], + "summary": "Create new navigation property to assignments for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.CreateAssignments", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.GetAssignments", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationAssignment-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationAssignment" + ], + "summary": "Update the navigation property assignments in deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.UpdateAssignments", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationAssignment-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationAssignment" + ], + "summary": "Delete navigation property assignments for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.DeleteAssignments", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationAssignment-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceStatus" + ], + "summary": "Get deviceStatuses from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.ListDeviceStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deviceDisplayName", + "deviceDisplayName desc", + "userName", + "userName desc", + "deviceModel", + "deviceModel desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDeviceMobileAppConfigurationDeviceStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceStatus" + ], + "summary": "Create new navigation property to deviceStatuses for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.CreateDeviceStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceStatus" + ], + "summary": "Get deviceStatuses from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.GetDeviceStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationDeviceStatus-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationDeviceStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceStatus" + ], + "summary": "Update the navigation property deviceStatuses in deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.UpdateDeviceStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationDeviceStatus-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationDeviceStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceStatus" + ], + "summary": "Delete navigation property deviceStatuses for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.DeleteDeviceStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationDeviceStatus-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationDeviceStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceSummary" + ], + "summary": "Get deviceStatusSummary from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.GetDeviceStatusSummary", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "pendingCount", + "notApplicableCount", + "successCount", + "errorCount", + "failedCount", + "lastUpdateDateTime", + "configurationVersion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceSummary" + ], + "summary": "Update the navigation property deviceStatusSummary in deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.UpdateDeviceStatusSummary", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceSummary" + ], + "summary": "Delete navigation property deviceStatusSummary for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.DeleteDeviceStatusSummary", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserStatus" + ], + "summary": "Get userStatuses from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.ListUserStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userDisplayName", + "userDisplayName desc", + "devicesCount", + "devicesCount desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "devicesCount", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDeviceMobileAppConfigurationUserStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserStatus" + ], + "summary": "Create new navigation property to userStatuses for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.CreateUserStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserStatus" + ], + "summary": "Get userStatuses from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.GetUserStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationUserStatus-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationUserStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "devicesCount", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserStatus" + ], + "summary": "Update the navigation property userStatuses in deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.UpdateUserStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationUserStatus-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationUserStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserStatus" + ], + "summary": "Delete navigation property userStatuses for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.DeleteUserStatuses", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "managedDeviceMobileAppConfigurationUserStatus-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfigurationUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfigurationUserStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary": { + "get": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserSummary" + ], + "summary": "Get userStatusSummary from deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.GetUserStatusSummary", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "pendingCount", + "notApplicableCount", + "successCount", + "errorCount", + "failedCount", + "lastUpdateDateTime", + "configurationVersion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserSummary" + ], + "summary": "Update the navigation property userStatusSummary in deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.UpdateUserStatusSummary", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserSummary" + ], + "summary": "Delete navigation property userStatusSummary for deviceAppManagement", + "operationId": "deviceAppManagement.mobileAppConfigurations.DeleteUserStatusSummary", + "parameters": [ + { + "name": "managedDeviceMobileAppConfiguration-id", + "in": "path", + "description": "key: id of managedDeviceMobileAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDeviceMobileAppConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps": { + "get": { + "tags": [ + "deviceAppManagement.mobileApp" + ], + "summary": "Get mobileApps from deviceAppManagement", + "operationId": "deviceAppManagement.ListMobileApps", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "publisher", + "publisher desc", + "largeIcon", + "largeIcon desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isFeatured", + "isFeatured desc", + "privacyInformationUrl", + "privacyInformationUrl desc", + "informationUrl", + "informationUrl desc", + "owner", + "owner desc", + "developer", + "developer desc", + "notes", + "notes desc", + "publishingState", + "publishingState desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "publisher", + "largeIcon", + "createdDateTime", + "lastModifiedDateTime", + "isFeatured", + "privacyInformationUrl", + "informationUrl", + "owner", + "developer", + "notes", + "publishingState", + "categories", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "categories", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mobileApp", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileApp" + ], + "summary": "Create new navigation property to mobileApps for deviceAppManagement", + "operationId": "deviceAppManagement.CreateMobileApps", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps/{mobileApp-id}": { + "get": { + "tags": [ + "deviceAppManagement.mobileApp" + ], + "summary": "Get mobileApps from deviceAppManagement", + "operationId": "deviceAppManagement.GetMobileApps", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "publisher", + "largeIcon", + "createdDateTime", + "lastModifiedDateTime", + "isFeatured", + "privacyInformationUrl", + "informationUrl", + "owner", + "developer", + "notes", + "publishingState", + "categories", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "categories", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileApp" + ], + "summary": "Update the navigation property mobileApps in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateMobileApps", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileApp" + ], + "summary": "Delete navigation property mobileApps for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteMobileApps", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments": { + "get": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.ListAssignments", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "intent", + "intent desc", + "target", + "target desc", + "settings", + "settings desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "intent", + "target", + "settings" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mobileAppAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppAssignment" + ], + "summary": "Create new navigation property to assignments for deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.CreateAssignments", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}": { + "get": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.GetAssignments", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "name": "mobileAppAssignment-id", + "in": "path", + "description": "key: id of mobileAppAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileAppAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "intent", + "target", + "settings" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppAssignment" + ], + "summary": "Update the navigation property assignments in deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.UpdateAssignments", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "name": "mobileAppAssignment-id", + "in": "path", + "description": "key: id of mobileAppAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileAppAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppAssignment" + ], + "summary": "Delete navigation property assignments for deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.DeleteAssignments", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "name": "mobileAppAssignment-id", + "in": "path", + "description": "key: id of mobileAppAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileAppAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps/{mobileApp-id}/categories": { + "get": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppCategory" + ], + "summary": "Get categories from deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.ListCategories", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "lastModifiedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mobileAppCategory", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref": { + "get": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppCategory" + ], + "summary": "Get ref of categories from deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.ListRefCategories", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of mobileAppCategory", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.mobileApps.mobileAppCategory" + ], + "summary": "Create new navigation property ref to categories for deviceAppManagement", + "operationId": "deviceAppManagement.mobileApps.CreateRefCategories", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.mobileApps.assign", + "parameters": [ + { + "name": "mobileApp-id", + "in": "path", + "description": "key: id of mobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileApp" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "mobileAppAssignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign" + ] + }, + "/deviceAppManagement/targetedManagedAppConfigurations": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfiguration" + ], + "summary": "Get targetedManagedAppConfigurations from deviceAppManagement", + "operationId": "deviceAppManagement.ListTargetedManagedAppConfigurations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc", + "customSettings", + "customSettings desc", + "deployedAppCount", + "deployedAppCount desc", + "isAssigned", + "isAssigned desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "customSettings", + "deployedAppCount", + "isAssigned", + "apps", + "deploymentSummary", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "apps", + "deploymentSummary", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of targetedManagedAppConfiguration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfiguration" + ], + "summary": "Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement", + "operationId": "deviceAppManagement.CreateTargetedManagedAppConfigurations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfiguration" + ], + "summary": "Get targetedManagedAppConfigurations from deviceAppManagement", + "operationId": "deviceAppManagement.GetTargetedManagedAppConfigurations", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "customSettings", + "deployedAppCount", + "isAssigned", + "apps", + "deploymentSummary", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "apps", + "deploymentSummary", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfiguration" + ], + "summary": "Update the navigation property targetedManagedAppConfigurations in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateTargetedManagedAppConfigurations", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfiguration" + ], + "summary": "Delete navigation property targetedManagedAppConfigurations for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteTargetedManagedAppConfigurations", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.ListApps", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "mobileAppIdentifier", + "mobileAppIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedMobileApp", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedMobileApp" + ], + "summary": "Create new navigation property to apps for deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.CreateApps", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedMobileApp" + ], + "summary": "Get apps from deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.GetApps", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "mobileAppIdentifier", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedMobileApp" + ], + "summary": "Update the navigation property apps in deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.UpdateApps", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedMobileApp" + ], + "summary": "Delete navigation property apps for deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.DeleteApps", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "managedMobileApp-id", + "in": "path", + "description": "key: id of managedMobileApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedMobileApp" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppPolicyAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.ListAssignments", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of targetedManagedAppPolicyAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppPolicyAssignment" + ], + "summary": "Create new navigation property to assignments for deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.CreateAssignments", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppPolicyAssignment" + ], + "summary": "Get assignments from deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.GetAssignments", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "targetedManagedAppPolicyAssignment-id", + "in": "path", + "description": "key: id of targetedManagedAppPolicyAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppPolicyAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppPolicyAssignment" + ], + "summary": "Update the navigation property assignments in deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.UpdateAssignments", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "targetedManagedAppPolicyAssignment-id", + "in": "path", + "description": "key: id of targetedManagedAppPolicyAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppPolicyAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppPolicyAssignment" + ], + "summary": "Delete navigation property assignments for deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.DeleteAssignments", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "targetedManagedAppPolicyAssignment-id", + "in": "path", + "description": "key: id of targetedManagedAppPolicyAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppPolicyAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary": { + "get": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedAppPolicyDeploymentSummary" + ], + "summary": "Get deploymentSummary from deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.GetDeploymentSummary", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "configurationDeployedUserCount", + "lastRefreshTime", + "configurationDeploymentSummaryPerApp", + "version" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedAppPolicyDeploymentSummary" + ], + "summary": "Update the navigation property deploymentSummary in deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.UpdateDeploymentSummary", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.targetedManagedAppConfigurations.managedAppPolicyDeploymentSummary" + ], + "summary": "Delete navigation property deploymentSummary for deviceAppManagement", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.DeleteDeploymentSummary", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.assign", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/assign", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/assign", + "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "/deviceAppManagement/mobileApps/{mobileApp-id}/assign" + ] + }, + "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "deviceAppManagement.targetedManagedAppConfigurations.targetApps", + "parameters": [ + { + "name": "targetedManagedAppConfiguration-id", + "in": "path", + "description": "key: id of targetedManagedAppConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "targetedManagedAppConfiguration" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/targetApps", + "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps" + ] + }, + "/deviceAppManagement/vppTokens": { + "get": { + "tags": [ + "deviceAppManagement.vppToken" + ], + "summary": "Get vppTokens from deviceAppManagement", + "operationId": "deviceAppManagement.ListVppTokens", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "organizationName", + "organizationName desc", + "vppTokenAccountType", + "vppTokenAccountType desc", + "appleId", + "appleId desc", + "expirationDateTime", + "expirationDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "token", + "token desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "state", + "state desc", + "lastSyncStatus", + "lastSyncStatus desc", + "automaticallyUpdateApps", + "automaticallyUpdateApps desc", + "countryOrRegion", + "countryOrRegion desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "organizationName", + "vppTokenAccountType", + "appleId", + "expirationDateTime", + "lastSyncDateTime", + "token", + "lastModifiedDateTime", + "state", + "lastSyncStatus", + "automaticallyUpdateApps", + "countryOrRegion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of vppToken", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.vppToken" + ], + "summary": "Create new navigation property to vppTokens for deviceAppManagement", + "operationId": "deviceAppManagement.CreateVppTokens", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/vppTokens/{vppToken-id}": { + "get": { + "tags": [ + "deviceAppManagement.vppToken" + ], + "summary": "Get vppTokens from deviceAppManagement", + "operationId": "deviceAppManagement.GetVppTokens", + "parameters": [ + { + "name": "vppToken-id", + "in": "path", + "description": "key: id of vppToken", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "vppToken" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "organizationName", + "vppTokenAccountType", + "appleId", + "expirationDateTime", + "lastSyncDateTime", + "token", + "lastModifiedDateTime", + "state", + "lastSyncStatus", + "automaticallyUpdateApps", + "countryOrRegion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.vppToken" + ], + "summary": "Update the navigation property vppTokens in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateVppTokens", + "parameters": [ + { + "name": "vppToken-id", + "in": "path", + "description": "key: id of vppToken", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "vppToken" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.vppToken" + ], + "summary": "Delete navigation property vppTokens for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteVppTokens", + "parameters": [ + { + "name": "vppToken-id", + "in": "path", + "description": "key: id of vppToken", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "vppToken" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/vppTokens/{vppToken-id}/syncLicenses": { + "post": { + "tags": [ + "deviceAppManagement.Actions" + ], + "summary": "Invoke action syncLicenses", + "operationId": "deviceAppManagement.vppTokens.syncLicenses", + "parameters": [ + { + "name": "vppToken-id", + "in": "path", + "description": "key: id of vppToken", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "vppToken" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceAppManagement/windowsInformationProtectionPolicies": { + "get": { + "tags": [ + "deviceAppManagement.windowsInformationProtectionPolicy" + ], + "summary": "Get windowsInformationProtectionPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.ListWindowsInformationProtectionPolicies", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc", + "enforcementLevel", + "enforcementLevel desc", + "enterpriseDomain", + "enterpriseDomain desc", + "enterpriseProtectedDomainNames", + "enterpriseProtectedDomainNames desc", + "protectionUnderLockConfigRequired", + "protectionUnderLockConfigRequired desc", + "dataRecoveryCertificate", + "dataRecoveryCertificate desc", + "revokeOnUnenrollDisabled", + "revokeOnUnenrollDisabled desc", + "rightsManagementServicesTemplateId", + "rightsManagementServicesTemplateId desc", + "azureRightsManagementServicesAllowed", + "azureRightsManagementServicesAllowed desc", + "iconsVisible", + "iconsVisible desc", + "protectedApps", + "protectedApps desc", + "exemptApps", + "exemptApps desc", + "enterpriseNetworkDomainNames", + "enterpriseNetworkDomainNames desc", + "enterpriseProxiedDomains", + "enterpriseProxiedDomains desc", + "enterpriseIPRanges", + "enterpriseIPRanges desc", + "enterpriseIPRangesAreAuthoritative", + "enterpriseIPRangesAreAuthoritative desc", + "enterpriseProxyServers", + "enterpriseProxyServers desc", + "enterpriseInternalProxyServers", + "enterpriseInternalProxyServers desc", + "enterpriseProxyServersAreAuthoritative", + "enterpriseProxyServersAreAuthoritative desc", + "neutralDomainResources", + "neutralDomainResources desc", + "indexingEncryptedStoresOrItemsBlocked", + "indexingEncryptedStoresOrItemsBlocked desc", + "smbAutoEncryptedFileExtensions", + "smbAutoEncryptedFileExtensions desc", + "isAssigned", + "isAssigned desc", + "revokeOnMdmHandoffDisabled", + "revokeOnMdmHandoffDisabled desc", + "mdmEnrollmentUrl", + "mdmEnrollmentUrl desc", + "windowsHelloForBusinessBlocked", + "windowsHelloForBusinessBlocked desc", + "pinMinimumLength", + "pinMinimumLength desc", + "pinUppercaseLetters", + "pinUppercaseLetters desc", + "pinLowercaseLetters", + "pinLowercaseLetters desc", + "pinSpecialCharacters", + "pinSpecialCharacters desc", + "pinExpirationDays", + "pinExpirationDays desc", + "numberOfPastPinsRemembered", + "numberOfPastPinsRemembered desc", + "passwordMaximumAttemptCount", + "passwordMaximumAttemptCount desc", + "minutesOfInactivityBeforeDeviceLock", + "minutesOfInactivityBeforeDeviceLock desc", + "daysWithoutContactBeforeUnenroll", + "daysWithoutContactBeforeUnenroll desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "enforcementLevel", + "enterpriseDomain", + "enterpriseProtectedDomainNames", + "protectionUnderLockConfigRequired", + "dataRecoveryCertificate", + "revokeOnUnenrollDisabled", + "rightsManagementServicesTemplateId", + "azureRightsManagementServicesAllowed", + "iconsVisible", + "protectedApps", + "exemptApps", + "enterpriseNetworkDomainNames", + "enterpriseProxiedDomains", + "enterpriseIPRanges", + "enterpriseIPRangesAreAuthoritative", + "enterpriseProxyServers", + "enterpriseInternalProxyServers", + "enterpriseProxyServersAreAuthoritative", + "neutralDomainResources", + "indexingEncryptedStoresOrItemsBlocked", + "smbAutoEncryptedFileExtensions", + "isAssigned", + "revokeOnMdmHandoffDisabled", + "mdmEnrollmentUrl", + "windowsHelloForBusinessBlocked", + "pinMinimumLength", + "pinUppercaseLetters", + "pinLowercaseLetters", + "pinSpecialCharacters", + "pinExpirationDays", + "numberOfPastPinsRemembered", + "passwordMaximumAttemptCount", + "minutesOfInactivityBeforeDeviceLock", + "daysWithoutContactBeforeUnenroll", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of windowsInformationProtectionPolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceAppManagement.windowsInformationProtectionPolicy" + ], + "summary": "Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.CreateWindowsInformationProtectionPolicies", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}": { + "get": { + "tags": [ + "deviceAppManagement.windowsInformationProtectionPolicy" + ], + "summary": "Get windowsInformationProtectionPolicies from deviceAppManagement", + "operationId": "deviceAppManagement.GetWindowsInformationProtectionPolicies", + "parameters": [ + { + "name": "windowsInformationProtectionPolicy-id", + "in": "path", + "description": "key: id of windowsInformationProtectionPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionPolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "createdDateTime", + "lastModifiedDateTime", + "version", + "enforcementLevel", + "enterpriseDomain", + "enterpriseProtectedDomainNames", + "protectionUnderLockConfigRequired", + "dataRecoveryCertificate", + "revokeOnUnenrollDisabled", + "rightsManagementServicesTemplateId", + "azureRightsManagementServicesAllowed", + "iconsVisible", + "protectedApps", + "exemptApps", + "enterpriseNetworkDomainNames", + "enterpriseProxiedDomains", + "enterpriseIPRanges", + "enterpriseIPRangesAreAuthoritative", + "enterpriseProxyServers", + "enterpriseInternalProxyServers", + "enterpriseProxyServersAreAuthoritative", + "neutralDomainResources", + "indexingEncryptedStoresOrItemsBlocked", + "smbAutoEncryptedFileExtensions", + "isAssigned", + "revokeOnMdmHandoffDisabled", + "mdmEnrollmentUrl", + "windowsHelloForBusinessBlocked", + "pinMinimumLength", + "pinUppercaseLetters", + "pinLowercaseLetters", + "pinSpecialCharacters", + "pinExpirationDays", + "numberOfPastPinsRemembered", + "passwordMaximumAttemptCount", + "minutesOfInactivityBeforeDeviceLock", + "daysWithoutContactBeforeUnenroll", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "protectedAppLockerFiles", + "exemptAppLockerFiles", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceAppManagement.windowsInformationProtectionPolicy" + ], + "summary": "Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement", + "operationId": "deviceAppManagement.UpdateWindowsInformationProtectionPolicies", + "parameters": [ + { + "name": "windowsInformationProtectionPolicy-id", + "in": "path", + "description": "key: id of windowsInformationProtectionPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionPolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceAppManagement.windowsInformationProtectionPolicy" + ], + "summary": "Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement", + "operationId": "deviceAppManagement.DeleteWindowsInformationProtectionPolicies", + "parameters": [ + { + "name": "windowsInformationProtectionPolicy-id", + "in": "path", + "description": "key: id of windowsInformationProtectionPolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionPolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement": { + "get": { + "tags": [ + "deviceManagement.deviceManagement" + ], + "summary": "Get deviceManagement", + "operationId": "deviceManagement.deviceManagement.GetDeviceManagement", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "subscriptionState", + "settings", + "intuneBrand", + "termsAndConditions", + "applePushNotificationCertificate", + "managedDeviceOverview", + "detectedApps", + "managedDevices", + "deviceConfigurations", + "deviceCompliancePolicies", + "softwareUpdateStatusSummary", + "deviceCompliancePolicyDeviceStateSummary", + "deviceCompliancePolicySettingStateSummaries", + "deviceConfigurationDeviceStateSummaries", + "iosUpdateStatuses", + "deviceCategories", + "exchangeConnectors", + "deviceEnrollmentConfigurations", + "conditionalAccessSettings", + "mobileThreatDefenseConnectors", + "deviceManagementPartners", + "notificationMessageTemplates", + "roleDefinitions", + "roleAssignments", + "resourceOperations", + "telecomExpenseManagementPartners", + "remoteAssistancePartners", + "windowsInformationProtectionAppLearningSummaries", + "windowsInformationProtectionNetworkLearningSummaries", + "troubleshootingEvents" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "termsAndConditions", + "applePushNotificationCertificate", + "managedDeviceOverview", + "detectedApps", + "managedDevices", + "deviceConfigurations", + "deviceCompliancePolicies", + "softwareUpdateStatusSummary", + "deviceCompliancePolicyDeviceStateSummary", + "deviceCompliancePolicySettingStateSummaries", + "deviceConfigurationDeviceStateSummaries", + "iosUpdateStatuses", + "deviceCategories", + "exchangeConnectors", + "deviceEnrollmentConfigurations", + "conditionalAccessSettings", + "mobileThreatDefenseConnectors", + "deviceManagementPartners", + "notificationMessageTemplates", + "roleDefinitions", + "roleAssignments", + "resourceOperations", + "telecomExpenseManagementPartners", + "remoteAssistancePartners", + "windowsInformationProtectionAppLearningSummaries", + "windowsInformationProtectionNetworkLearningSummaries", + "troubleshootingEvents" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagement" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceManagement" + ], + "summary": "Update deviceManagement", + "operationId": "deviceManagement.deviceManagement.UpdateDeviceManagement", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagement" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/applePushNotificationCertificate": { + "get": { + "tags": [ + "deviceManagement.applePushNotificationCertificate" + ], + "summary": "Get applePushNotificationCertificate from deviceManagement", + "operationId": "deviceManagement.GetApplePushNotificationCertificate", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "appleIdentifier", + "topicIdentifier", + "lastModifiedDateTime", + "expirationDateTime", + "certificate" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.applePushNotificationCertificate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.applePushNotificationCertificate" + ], + "summary": "Update the navigation property applePushNotificationCertificate in deviceManagement", + "operationId": "deviceManagement.UpdateApplePushNotificationCertificate", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.applePushNotificationCertificate" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.applePushNotificationCertificate" + ], + "summary": "Delete navigation property applePushNotificationCertificate for deviceManagement", + "operationId": "deviceManagement.DeleteApplePushNotificationCertificate", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest()": { + "get": { + "tags": [ + "deviceManagement.Functions" + ], + "summary": "Invoke function downloadApplePushNotificationCertificateSigningRequest", + "operationId": "deviceManagement.applePushNotificationCertificate.downloadApplePushNotificationCertificateSigningRequest", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/deviceManagement/conditionalAccessSettings": { + "get": { + "tags": [ + "deviceManagement.onPremisesConditionalAccessSettings" + ], + "summary": "Get conditionalAccessSettings from deviceManagement", + "operationId": "deviceManagement.GetConditionalAccessSettings", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "enabled", + "includedGroups", + "excludedGroups", + "overrideDefaultRule" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onPremisesConditionalAccessSettings" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.onPremisesConditionalAccessSettings" + ], + "summary": "Update the navigation property conditionalAccessSettings in deviceManagement", + "operationId": "deviceManagement.UpdateConditionalAccessSettings", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onPremisesConditionalAccessSettings" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.onPremisesConditionalAccessSettings" + ], + "summary": "Delete navigation property conditionalAccessSettings for deviceManagement", + "operationId": "deviceManagement.DeleteConditionalAccessSettings", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/detectedApps": { + "get": { + "tags": [ + "deviceManagement.detectedApp" + ], + "summary": "Get detectedApps from deviceManagement", + "operationId": "deviceManagement.ListDetectedApps", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "version", + "version desc", + "sizeInByte", + "sizeInByte desc", + "deviceCount", + "deviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "version", + "sizeInByte", + "deviceCount", + "managedDevices" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "managedDevices" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of detectedApp", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.detectedApp" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.detectedApp" + ], + "summary": "Create new navigation property to detectedApps for deviceManagement", + "operationId": "deviceManagement.CreateDetectedApps", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.detectedApp" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.detectedApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/detectedApps/{detectedApp-id}": { + "get": { + "tags": [ + "deviceManagement.detectedApp" + ], + "summary": "Get detectedApps from deviceManagement", + "operationId": "deviceManagement.GetDetectedApps", + "parameters": [ + { + "name": "detectedApp-id", + "in": "path", + "description": "key: id of detectedApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "detectedApp" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "version", + "sizeInByte", + "deviceCount", + "managedDevices" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "managedDevices" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.detectedApp" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.detectedApp" + ], + "summary": "Update the navigation property detectedApps in deviceManagement", + "operationId": "deviceManagement.UpdateDetectedApps", + "parameters": [ + { + "name": "detectedApp-id", + "in": "path", + "description": "key: id of detectedApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "detectedApp" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.detectedApp" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.detectedApp" + ], + "summary": "Delete navigation property detectedApps for deviceManagement", + "operationId": "deviceManagement.DeleteDetectedApps", + "parameters": [ + { + "name": "detectedApp-id", + "in": "path", + "description": "key: id of detectedApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "detectedApp" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices": { + "get": { + "tags": [ + "deviceManagement.detectedApps.managedDevice" + ], + "summary": "Get managedDevices from deviceManagement", + "operationId": "deviceManagement.detectedApps.ListManagedDevices", + "parameters": [ + { + "name": "detectedApp-id", + "in": "path", + "description": "key: id of detectedApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "detectedApp" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userId", + "userId desc", + "deviceName", + "deviceName desc", + "managedDeviceOwnerType", + "managedDeviceOwnerType desc", + "deviceActionResults", + "deviceActionResults desc", + "enrolledDateTime", + "enrolledDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "operatingSystem", + "operatingSystem desc", + "complianceState", + "complianceState desc", + "jailBroken", + "jailBroken desc", + "managementAgent", + "managementAgent desc", + "osVersion", + "osVersion desc", + "easActivated", + "easActivated desc", + "easDeviceId", + "easDeviceId desc", + "easActivationDateTime", + "easActivationDateTime desc", + "azureADRegistered", + "azureADRegistered desc", + "deviceEnrollmentType", + "deviceEnrollmentType desc", + "activationLockBypassCode", + "activationLockBypassCode desc", + "emailAddress", + "emailAddress desc", + "azureADDeviceId", + "azureADDeviceId desc", + "deviceRegistrationState", + "deviceRegistrationState desc", + "deviceCategoryDisplayName", + "deviceCategoryDisplayName desc", + "isSupervised", + "isSupervised desc", + "exchangeLastSuccessfulSyncDateTime", + "exchangeLastSuccessfulSyncDateTime desc", + "exchangeAccessState", + "exchangeAccessState desc", + "exchangeAccessStateReason", + "exchangeAccessStateReason desc", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionUrl desc", + "remoteAssistanceSessionErrorDetails", + "remoteAssistanceSessionErrorDetails desc", + "isEncrypted", + "isEncrypted desc", + "userPrincipalName", + "userPrincipalName desc", + "model", + "model desc", + "manufacturer", + "manufacturer desc", + "imei", + "imei desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "serialNumber", + "serialNumber desc", + "phoneNumber", + "phoneNumber desc", + "androidSecurityPatchLevel", + "androidSecurityPatchLevel desc", + "userDisplayName", + "userDisplayName desc", + "configurationManagerClientEnabledFeatures", + "configurationManagerClientEnabledFeatures desc", + "wiFiMacAddress", + "wiFiMacAddress desc", + "deviceHealthAttestationState", + "deviceHealthAttestationState desc", + "subscriberCarrier", + "subscriberCarrier desc", + "meid", + "meid desc", + "totalStorageSpaceInBytes", + "totalStorageSpaceInBytes desc", + "freeStorageSpaceInBytes", + "freeStorageSpaceInBytes desc", + "managedDeviceName", + "managedDeviceName desc", + "partnerReportedThreatState", + "partnerReportedThreatState desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDevice", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref": { + "get": { + "tags": [ + "deviceManagement.detectedApps.managedDevice" + ], + "summary": "Get ref of managedDevices from deviceManagement", + "operationId": "deviceManagement.detectedApps.ListRefManagedDevices", + "parameters": [ + { + "name": "detectedApp-id", + "in": "path", + "description": "key: id of detectedApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "detectedApp" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userId", + "userId desc", + "deviceName", + "deviceName desc", + "managedDeviceOwnerType", + "managedDeviceOwnerType desc", + "deviceActionResults", + "deviceActionResults desc", + "enrolledDateTime", + "enrolledDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "operatingSystem", + "operatingSystem desc", + "complianceState", + "complianceState desc", + "jailBroken", + "jailBroken desc", + "managementAgent", + "managementAgent desc", + "osVersion", + "osVersion desc", + "easActivated", + "easActivated desc", + "easDeviceId", + "easDeviceId desc", + "easActivationDateTime", + "easActivationDateTime desc", + "azureADRegistered", + "azureADRegistered desc", + "deviceEnrollmentType", + "deviceEnrollmentType desc", + "activationLockBypassCode", + "activationLockBypassCode desc", + "emailAddress", + "emailAddress desc", + "azureADDeviceId", + "azureADDeviceId desc", + "deviceRegistrationState", + "deviceRegistrationState desc", + "deviceCategoryDisplayName", + "deviceCategoryDisplayName desc", + "isSupervised", + "isSupervised desc", + "exchangeLastSuccessfulSyncDateTime", + "exchangeLastSuccessfulSyncDateTime desc", + "exchangeAccessState", + "exchangeAccessState desc", + "exchangeAccessStateReason", + "exchangeAccessStateReason desc", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionUrl desc", + "remoteAssistanceSessionErrorDetails", + "remoteAssistanceSessionErrorDetails desc", + "isEncrypted", + "isEncrypted desc", + "userPrincipalName", + "userPrincipalName desc", + "model", + "model desc", + "manufacturer", + "manufacturer desc", + "imei", + "imei desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "serialNumber", + "serialNumber desc", + "phoneNumber", + "phoneNumber desc", + "androidSecurityPatchLevel", + "androidSecurityPatchLevel desc", + "userDisplayName", + "userDisplayName desc", + "configurationManagerClientEnabledFeatures", + "configurationManagerClientEnabledFeatures desc", + "wiFiMacAddress", + "wiFiMacAddress desc", + "deviceHealthAttestationState", + "deviceHealthAttestationState desc", + "subscriberCarrier", + "subscriberCarrier desc", + "meid", + "meid desc", + "totalStorageSpaceInBytes", + "totalStorageSpaceInBytes desc", + "freeStorageSpaceInBytes", + "freeStorageSpaceInBytes desc", + "managedDeviceName", + "managedDeviceName desc", + "partnerReportedThreatState", + "partnerReportedThreatState desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of managedDevice", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.detectedApps.managedDevice" + ], + "summary": "Create new navigation property ref to managedDevices for deviceManagement", + "operationId": "deviceManagement.detectedApps.CreateRefManagedDevices", + "parameters": [ + { + "name": "detectedApp-id", + "in": "path", + "description": "key: id of detectedApp", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "detectedApp" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCategories": { + "get": { + "tags": [ + "deviceManagement.deviceCategory" + ], + "summary": "Get deviceCategories from deviceManagement", + "operationId": "deviceManagement.ListDeviceCategories", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCategory", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCategory" + ], + "summary": "Create new navigation property to deviceCategories for deviceManagement", + "operationId": "deviceManagement.CreateDeviceCategories", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCategories/{deviceCategory-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCategory" + ], + "summary": "Get deviceCategories from deviceManagement", + "operationId": "deviceManagement.GetDeviceCategories", + "parameters": [ + { + "name": "deviceCategory-id", + "in": "path", + "description": "key: id of deviceCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCategory" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCategory" + ], + "summary": "Update the navigation property deviceCategories in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceCategories", + "parameters": [ + { + "name": "deviceCategory-id", + "in": "path", + "description": "key: id of deviceCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCategory" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCategory" + ], + "summary": "Delete navigation property deviceCategories for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceCategories", + "parameters": [ + { + "name": "deviceCategory-id", + "in": "path", + "description": "key: id of deviceCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCategory" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicy" + ], + "summary": "Get deviceCompliancePolicies from deviceManagement", + "operationId": "deviceManagement.ListDeviceCompliancePolicies", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "displayName", + "displayName desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "description", + "lastModifiedDateTime", + "displayName", + "version", + "scheduledActionsForRule", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "scheduledActionsForRule", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCompliancePolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicy" + ], + "summary": "Create new navigation property to deviceCompliancePolicies for deviceManagement", + "operationId": "deviceManagement.CreateDeviceCompliancePolicies", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicy" + ], + "summary": "Get deviceCompliancePolicies from deviceManagement", + "operationId": "deviceManagement.GetDeviceCompliancePolicies", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "description", + "lastModifiedDateTime", + "displayName", + "version", + "scheduledActionsForRule", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "scheduledActionsForRule", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicy" + ], + "summary": "Update the navigation property deviceCompliancePolicies in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceCompliancePolicies", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicy" + ], + "summary": "Delete navigation property deviceCompliancePolicies for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceCompliancePolicies", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceCompliancePolicyAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.ListAssignments", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCompliancePolicyAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceCompliancePolicyAssignment" + ], + "summary": "Create new navigation property to assignments for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.CreateAssignments", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceCompliancePolicyAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetAssignments", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceCompliancePolicyAssignment-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceCompliancePolicyAssignment" + ], + "summary": "Update the navigation property assignments in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateAssignments", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceCompliancePolicyAssignment-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceCompliancePolicyAssignment" + ], + "summary": "Delete navigation property assignments for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteAssignments", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceCompliancePolicyAssignment-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.settingStateDeviceSummary" + ], + "summary": "Get deviceSettingStateSummaries from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.ListDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingName", + "settingName desc", + "instancePath", + "instancePath desc", + "unknownDeviceCount", + "unknownDeviceCount desc", + "notApplicableDeviceCount", + "notApplicableDeviceCount desc", + "compliantDeviceCount", + "compliantDeviceCount desc", + "remediatedDeviceCount", + "remediatedDeviceCount desc", + "nonCompliantDeviceCount", + "nonCompliantDeviceCount desc", + "errorDeviceCount", + "errorDeviceCount desc", + "conflictDeviceCount", + "conflictDeviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingName", + "instancePath", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of settingStateDeviceSummary", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.settingStateDeviceSummary" + ], + "summary": "Create new navigation property to deviceSettingStateSummaries for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.CreateDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.settingStateDeviceSummary" + ], + "summary": "Get deviceSettingStateSummaries from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "settingStateDeviceSummary-id", + "in": "path", + "description": "key: id of settingStateDeviceSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "settingStateDeviceSummary" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingName", + "instancePath", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.settingStateDeviceSummary" + ], + "summary": "Update the navigation property deviceSettingStateSummaries in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "settingStateDeviceSummary-id", + "in": "path", + "description": "key: id of settingStateDeviceSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "settingStateDeviceSummary" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.settingStateDeviceSummary" + ], + "summary": "Delete navigation property deviceSettingStateSummaries for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "settingStateDeviceSummary-id", + "in": "path", + "description": "key: id of settingStateDeviceSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "settingStateDeviceSummary" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceStatus" + ], + "summary": "Get deviceStatuses from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.ListDeviceStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deviceDisplayName", + "deviceDisplayName desc", + "userName", + "userName desc", + "deviceModel", + "deviceModel desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceComplianceDeviceStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceStatus" + ], + "summary": "Create new navigation property to deviceStatuses for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.CreateDeviceStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceStatus" + ], + "summary": "Get deviceStatuses from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetDeviceStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceDeviceStatus-id", + "in": "path", + "description": "key: id of deviceComplianceDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceDeviceStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceStatus" + ], + "summary": "Update the navigation property deviceStatuses in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateDeviceStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceDeviceStatus-id", + "in": "path", + "description": "key: id of deviceComplianceDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceDeviceStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceStatus" + ], + "summary": "Delete navigation property deviceStatuses for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteDeviceStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceDeviceStatus-id", + "in": "path", + "description": "key: id of deviceComplianceDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceDeviceStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceOverview" + ], + "summary": "Get deviceStatusOverview from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetDeviceStatusOverview", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "pendingCount", + "notApplicableCount", + "successCount", + "errorCount", + "failedCount", + "lastUpdateDateTime", + "configurationVersion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceOverview" + ], + "summary": "Update the navigation property deviceStatusOverview in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateDeviceStatusOverview", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceOverview" + ], + "summary": "Delete navigation property deviceStatusOverview for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteDeviceStatusOverview", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceManagement.deviceCompliancePolicies.assign", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign" + ] + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action scheduleActionsForRules", + "operationId": "deviceManagement.deviceCompliancePolicies.scheduleActionsForRules", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "deviceComplianceScheduledActionForRules": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceScheduledActionForRule" + ], + "summary": "Get scheduledActionsForRule from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.ListScheduledActionsForRule", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "ruleName", + "ruleName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "ruleName", + "scheduledActionConfigurations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "scheduledActionConfigurations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceComplianceScheduledActionForRule", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceScheduledActionForRule" + ], + "summary": "Create new navigation property to scheduledActionsForRule for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.CreateScheduledActionsForRule", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceScheduledActionForRule" + ], + "summary": "Get scheduledActionsForRule from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetScheduledActionsForRule", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "ruleName", + "scheduledActionConfigurations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "scheduledActionConfigurations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceScheduledActionForRule" + ], + "summary": "Update the navigation property scheduledActionsForRule in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateScheduledActionsForRule", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceScheduledActionForRule" + ], + "summary": "Delete navigation property scheduledActionsForRule for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteScheduledActionsForRule", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.deviceComplianceActionItem" + ], + "summary": "Get scheduledActionConfigurations from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.ListScheduledActionConfigurations", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "gracePeriodHours", + "gracePeriodHours desc", + "actionType", + "actionType desc", + "notificationTemplateId", + "notificationTemplateId desc", + "notificationMessageCCList", + "notificationMessageCCList desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "gracePeriodHours", + "actionType", + "notificationTemplateId", + "notificationMessageCCList" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceComplianceActionItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.deviceComplianceActionItem" + ], + "summary": "Create new navigation property to scheduledActionConfigurations for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.CreateScheduledActionConfigurations", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.deviceComplianceActionItem" + ], + "summary": "Get scheduledActionConfigurations from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.GetScheduledActionConfigurations", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + }, + { + "name": "deviceComplianceActionItem-id", + "in": "path", + "description": "key: id of deviceComplianceActionItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceActionItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "gracePeriodHours", + "actionType", + "notificationTemplateId", + "notificationMessageCCList" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.deviceComplianceActionItem" + ], + "summary": "Update the navigation property scheduledActionConfigurations in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.UpdateScheduledActionConfigurations", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + }, + { + "name": "deviceComplianceActionItem-id", + "in": "path", + "description": "key: id of deviceComplianceActionItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceActionItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.deviceComplianceActionItem" + ], + "summary": "Delete navigation property scheduledActionConfigurations for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.DeleteScheduledActionConfigurations", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceScheduledActionForRule-id", + "in": "path", + "description": "key: id of deviceComplianceScheduledActionForRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceScheduledActionForRule" + }, + { + "name": "deviceComplianceActionItem-id", + "in": "path", + "description": "key: id of deviceComplianceActionItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceActionItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserStatus" + ], + "summary": "Get userStatuses from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.ListUserStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userDisplayName", + "userDisplayName desc", + "devicesCount", + "devicesCount desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "devicesCount", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceComplianceUserStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserStatus" + ], + "summary": "Create new navigation property to userStatuses for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.CreateUserStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserStatus" + ], + "summary": "Get userStatuses from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetUserStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceUserStatus-id", + "in": "path", + "description": "key: id of deviceComplianceUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceUserStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "devicesCount", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserStatus" + ], + "summary": "Update the navigation property userStatuses in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateUserStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceUserStatus-id", + "in": "path", + "description": "key: id of deviceComplianceUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceUserStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserStatus" + ], + "summary": "Delete navigation property userStatuses for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteUserStatuses", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "deviceComplianceUserStatus-id", + "in": "path", + "description": "key: id of deviceComplianceUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceUserStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserOverview" + ], + "summary": "Get userStatusOverview from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.GetUserStatusOverview", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "pendingCount", + "notApplicableCount", + "successCount", + "errorCount", + "failedCount", + "lastUpdateDateTime", + "configurationVersion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserOverview" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserOverview" + ], + "summary": "Update the navigation property userStatusOverview in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.UpdateUserStatusOverview", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserOverview" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicies.deviceComplianceUserOverview" + ], + "summary": "Delete navigation property userStatusOverview for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicies.DeleteUserStatusOverview", + "parameters": [ + { + "name": "deviceCompliancePolicy-id", + "in": "path", + "description": "key: id of deviceCompliancePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicyDeviceStateSummary": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicyDeviceStateSummary" + ], + "summary": "Get deviceCompliancePolicyDeviceStateSummary from deviceManagement", + "operationId": "deviceManagement.GetDeviceCompliancePolicyDeviceStateSummary", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "inGracePeriodCount", + "configManagerCount", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicyDeviceStateSummary" + ], + "summary": "Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceCompliancePolicyDeviceStateSummary", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicyDeviceStateSummary" + ], + "summary": "Delete navigation property deviceCompliancePolicyDeviceStateSummary for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceCompliancePolicyDeviceStateSummary", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicySettingStateSummaries": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummary" + ], + "summary": "Get deviceCompliancePolicySettingStateSummaries from deviceManagement", + "operationId": "deviceManagement.ListDeviceCompliancePolicySettingStateSummaries", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "setting", + "setting desc", + "settingName", + "settingName desc", + "platformType", + "platformType desc", + "unknownDeviceCount", + "unknownDeviceCount desc", + "notApplicableDeviceCount", + "notApplicableDeviceCount desc", + "compliantDeviceCount", + "compliantDeviceCount desc", + "remediatedDeviceCount", + "remediatedDeviceCount desc", + "nonCompliantDeviceCount", + "nonCompliantDeviceCount desc", + "errorDeviceCount", + "errorDeviceCount desc", + "conflictDeviceCount", + "conflictDeviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "setting", + "settingName", + "platformType", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount", + "deviceComplianceSettingStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceComplianceSettingStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCompliancePolicySettingStateSummary", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummary" + ], + "summary": "Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement", + "operationId": "deviceManagement.CreateDeviceCompliancePolicySettingStateSummaries", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummary" + ], + "summary": "Get deviceCompliancePolicySettingStateSummaries from deviceManagement", + "operationId": "deviceManagement.GetDeviceCompliancePolicySettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "setting", + "settingName", + "platformType", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount", + "deviceComplianceSettingStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceComplianceSettingStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummary" + ], + "summary": "Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceCompliancePolicySettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummary" + ], + "summary": "Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceCompliancePolicySettingStateSummaries", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingState" + ], + "summary": "Get deviceComplianceSettingStates from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicySettingStateSummaries.ListDeviceComplianceSettingStates", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "setting", + "setting desc", + "settingName", + "settingName desc", + "deviceId", + "deviceId desc", + "deviceName", + "deviceName desc", + "userId", + "userId desc", + "userEmail", + "userEmail desc", + "userName", + "userName desc", + "userPrincipalName", + "userPrincipalName desc", + "deviceModel", + "deviceModel desc", + "state", + "state desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "setting", + "settingName", + "deviceId", + "deviceName", + "userId", + "userEmail", + "userName", + "userPrincipalName", + "deviceModel", + "state", + "complianceGracePeriodExpirationDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceComplianceSettingState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceSettingState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingState" + ], + "summary": "Create new navigation property to deviceComplianceSettingStates for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicySettingStateSummaries.CreateDeviceComplianceSettingStates", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceSettingState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceSettingState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}": { + "get": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingState" + ], + "summary": "Get deviceComplianceSettingStates from deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicySettingStateSummaries.GetDeviceComplianceSettingStates", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + }, + { + "name": "deviceComplianceSettingState-id", + "in": "path", + "description": "key: id of deviceComplianceSettingState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceSettingState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "setting", + "settingName", + "deviceId", + "deviceName", + "userId", + "userEmail", + "userName", + "userPrincipalName", + "deviceModel", + "state", + "complianceGracePeriodExpirationDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceSettingState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingState" + ], + "summary": "Update the navigation property deviceComplianceSettingStates in deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicySettingStateSummaries.UpdateDeviceComplianceSettingStates", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + }, + { + "name": "deviceComplianceSettingState-id", + "in": "path", + "description": "key: id of deviceComplianceSettingState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceSettingState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceSettingState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingState" + ], + "summary": "Delete navigation property deviceComplianceSettingStates for deviceManagement", + "operationId": "deviceManagement.deviceCompliancePolicySettingStateSummaries.DeleteDeviceComplianceSettingStates", + "parameters": [ + { + "name": "deviceCompliancePolicySettingStateSummary-id", + "in": "path", + "description": "key: id of deviceCompliancePolicySettingStateSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicySettingStateSummary" + }, + { + "name": "deviceComplianceSettingState-id", + "in": "path", + "description": "key: id of deviceComplianceSettingState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceComplianceSettingState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurationDeviceStateSummaries": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurationDeviceStateSummary" + ], + "summary": "Get deviceConfigurationDeviceStateSummaries from deviceManagement", + "operationId": "deviceManagement.GetDeviceConfigurationDeviceStateSummaries", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurationDeviceStateSummary" + ], + "summary": "Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceConfigurationDeviceStateSummaries", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurationDeviceStateSummary" + ], + "summary": "Delete navigation property deviceConfigurationDeviceStateSummaries for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceConfigurationDeviceStateSummaries", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations": { + "get": { + "tags": [ + "deviceManagement.deviceConfiguration" + ], + "summary": "Get deviceConfigurations from deviceManagement", + "operationId": "deviceManagement.ListDeviceConfigurations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "displayName", + "displayName desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "createdDateTime", + "description", + "displayName", + "version", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfiguration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceConfiguration" + ], + "summary": "Create new navigation property to deviceConfigurations for deviceManagement", + "operationId": "deviceManagement.CreateDeviceConfigurations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}": { + "get": { + "tags": [ + "deviceManagement.deviceConfiguration" + ], + "summary": "Get deviceConfigurations from deviceManagement", + "operationId": "deviceManagement.GetDeviceConfigurations", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "createdDateTime", + "description", + "displayName", + "version", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "deviceStatuses", + "userStatuses", + "deviceStatusOverview", + "userStatusOverview", + "deviceSettingStateSummaries" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfiguration" + ], + "summary": "Update the navigation property deviceConfigurations in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceConfigurations", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfiguration" + ], + "summary": "Delete navigation property deviceConfigurations for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceConfigurations", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.ListAssignments", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfigurationAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationAssignment" + ], + "summary": "Create new navigation property to assignments for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.CreateAssignments", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.GetAssignments", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationAssignment-id", + "in": "path", + "description": "key: id of deviceConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationAssignment" + ], + "summary": "Update the navigation property assignments in deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.UpdateAssignments", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationAssignment-id", + "in": "path", + "description": "key: id of deviceConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationAssignment" + ], + "summary": "Delete navigation property assignments for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.DeleteAssignments", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationAssignment-id", + "in": "path", + "description": "key: id of deviceConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.settingStateDeviceSummary" + ], + "summary": "Get deviceSettingStateSummaries from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.ListDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingName", + "settingName desc", + "instancePath", + "instancePath desc", + "unknownDeviceCount", + "unknownDeviceCount desc", + "notApplicableDeviceCount", + "notApplicableDeviceCount desc", + "compliantDeviceCount", + "compliantDeviceCount desc", + "remediatedDeviceCount", + "remediatedDeviceCount desc", + "nonCompliantDeviceCount", + "nonCompliantDeviceCount desc", + "errorDeviceCount", + "errorDeviceCount desc", + "conflictDeviceCount", + "conflictDeviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingName", + "instancePath", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of settingStateDeviceSummary", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceConfigurations.settingStateDeviceSummary" + ], + "summary": "Create new navigation property to deviceSettingStateSummaries for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.CreateDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.settingStateDeviceSummary" + ], + "summary": "Get deviceSettingStateSummaries from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.GetDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "settingStateDeviceSummary-id", + "in": "path", + "description": "key: id of settingStateDeviceSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "settingStateDeviceSummary" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingName", + "instancePath", + "unknownDeviceCount", + "notApplicableDeviceCount", + "compliantDeviceCount", + "remediatedDeviceCount", + "nonCompliantDeviceCount", + "errorDeviceCount", + "conflictDeviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurations.settingStateDeviceSummary" + ], + "summary": "Update the navigation property deviceSettingStateSummaries in deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.UpdateDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "settingStateDeviceSummary-id", + "in": "path", + "description": "key: id of settingStateDeviceSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "settingStateDeviceSummary" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurations.settingStateDeviceSummary" + ], + "summary": "Delete navigation property deviceSettingStateSummaries for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.DeleteDeviceSettingStateSummaries", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "settingStateDeviceSummary-id", + "in": "path", + "description": "key: id of settingStateDeviceSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "settingStateDeviceSummary" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceStatus" + ], + "summary": "Get deviceStatuses from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.ListDeviceStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deviceDisplayName", + "deviceDisplayName desc", + "userName", + "userName desc", + "deviceModel", + "deviceModel desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfigurationDeviceStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceStatus" + ], + "summary": "Create new navigation property to deviceStatuses for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.CreateDeviceStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceStatus" + ], + "summary": "Get deviceStatuses from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.GetDeviceStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationDeviceStatus-id", + "in": "path", + "description": "key: id of deviceConfigurationDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationDeviceStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceStatus" + ], + "summary": "Update the navigation property deviceStatuses in deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.UpdateDeviceStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationDeviceStatus-id", + "in": "path", + "description": "key: id of deviceConfigurationDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationDeviceStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceStatus" + ], + "summary": "Delete navigation property deviceStatuses for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.DeleteDeviceStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationDeviceStatus-id", + "in": "path", + "description": "key: id of deviceConfigurationDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationDeviceStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceOverview" + ], + "summary": "Get deviceStatusOverview from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.GetDeviceStatusOverview", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "pendingCount", + "notApplicableCount", + "successCount", + "errorCount", + "failedCount", + "lastUpdateDateTime", + "configurationVersion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceOverview" + ], + "summary": "Update the navigation property deviceStatusOverview in deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.UpdateDeviceStatusOverview", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationDeviceOverview" + ], + "summary": "Delete navigation property deviceStatusOverview for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.DeleteDeviceStatusOverview", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceManagement.deviceConfigurations.assign", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign" + ] + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserStatus" + ], + "summary": "Get userStatuses from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.ListUserStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userDisplayName", + "userDisplayName desc", + "devicesCount", + "devicesCount desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "devicesCount", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfigurationUserStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserStatus" + ], + "summary": "Create new navigation property to userStatuses for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.CreateUserStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserStatus" + ], + "summary": "Get userStatuses from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.GetUserStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationUserStatus-id", + "in": "path", + "description": "key: id of deviceConfigurationUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationUserStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "devicesCount", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserStatus" + ], + "summary": "Update the navigation property userStatuses in deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.UpdateUserStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationUserStatus-id", + "in": "path", + "description": "key: id of deviceConfigurationUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationUserStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserStatus" + ], + "summary": "Delete navigation property userStatuses for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.DeleteUserStatuses", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "deviceConfigurationUserStatus-id", + "in": "path", + "description": "key: id of deviceConfigurationUserStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationUserStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview": { + "get": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserOverview" + ], + "summary": "Get userStatusOverview from deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.GetUserStatusOverview", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "pendingCount", + "notApplicableCount", + "successCount", + "errorCount", + "failedCount", + "lastUpdateDateTime", + "configurationVersion" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserOverview" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserOverview" + ], + "summary": "Update the navigation property userStatusOverview in deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.UpdateUserStatusOverview", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserOverview" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceConfigurations.deviceConfigurationUserOverview" + ], + "summary": "Delete navigation property userStatusOverview for deviceManagement", + "operationId": "deviceManagement.deviceConfigurations.DeleteUserStatusOverview", + "parameters": [ + { + "name": "deviceConfiguration-id", + "in": "path", + "description": "key: id of deviceConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceEnrollmentConfigurations": { + "get": { + "tags": [ + "deviceManagement.deviceEnrollmentConfiguration" + ], + "summary": "Get deviceEnrollmentConfigurations from deviceManagement", + "operationId": "deviceManagement.ListDeviceEnrollmentConfigurations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "priority", + "priority desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "priority", + "createdDateTime", + "lastModifiedDateTime", + "version", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceEnrollmentConfiguration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceEnrollmentConfiguration" + ], + "summary": "Create new navigation property to deviceEnrollmentConfigurations for deviceManagement", + "operationId": "deviceManagement.CreateDeviceEnrollmentConfigurations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}": { + "get": { + "tags": [ + "deviceManagement.deviceEnrollmentConfiguration" + ], + "summary": "Get deviceEnrollmentConfigurations from deviceManagement", + "operationId": "deviceManagement.GetDeviceEnrollmentConfigurations", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "priority", + "createdDateTime", + "lastModifiedDateTime", + "version", + "assignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceEnrollmentConfiguration" + ], + "summary": "Update the navigation property deviceEnrollmentConfigurations in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceEnrollmentConfigurations", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceEnrollmentConfiguration" + ], + "summary": "Delete navigation property deviceEnrollmentConfigurations for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceEnrollmentConfigurations", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments": { + "get": { + "tags": [ + "deviceManagement.deviceEnrollmentConfigurations.enrollmentConfigurationAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.ListAssignments", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of enrollmentConfigurationAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceEnrollmentConfigurations.enrollmentConfigurationAssignment" + ], + "summary": "Create new navigation property to assignments for deviceManagement", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.CreateAssignments", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}": { + "get": { + "tags": [ + "deviceManagement.deviceEnrollmentConfigurations.enrollmentConfigurationAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.GetAssignments", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + }, + { + "name": "enrollmentConfigurationAssignment-id", + "in": "path", + "description": "key: id of enrollmentConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "enrollmentConfigurationAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceEnrollmentConfigurations.enrollmentConfigurationAssignment" + ], + "summary": "Update the navigation property assignments in deviceManagement", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.UpdateAssignments", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + }, + { + "name": "enrollmentConfigurationAssignment-id", + "in": "path", + "description": "key: id of enrollmentConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "enrollmentConfigurationAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceEnrollmentConfigurations.enrollmentConfigurationAssignment" + ], + "summary": "Delete navigation property assignments for deviceManagement", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.DeleteAssignments", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + }, + { + "name": "enrollmentConfigurationAssignment-id", + "in": "path", + "description": "key: id of enrollmentConfigurationAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "enrollmentConfigurationAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action assign", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.assign", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "enrollmentConfigurationAssignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign" + ] + }, + "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action setPriority", + "operationId": "deviceManagement.deviceEnrollmentConfigurations.setPriority", + "parameters": [ + { + "name": "deviceEnrollmentConfiguration-id", + "in": "path", + "description": "key: id of deviceEnrollmentConfiguration", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceEnrollmentConfiguration" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "priority": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/deviceManagementPartners": { + "get": { + "tags": [ + "deviceManagement.deviceManagementPartner" + ], + "summary": "Get deviceManagementPartners from deviceManagement", + "operationId": "deviceManagement.ListDeviceManagementPartners", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastHeartbeatDateTime", + "lastHeartbeatDateTime desc", + "partnerState", + "partnerState desc", + "partnerAppType", + "partnerAppType desc", + "singleTenantAppId", + "singleTenantAppId desc", + "displayName", + "displayName desc", + "isConfigured", + "isConfigured desc", + "whenPartnerDevicesWillBeRemovedDateTime", + "whenPartnerDevicesWillBeRemovedDateTime desc", + "whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime", + "whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastHeartbeatDateTime", + "partnerState", + "partnerAppType", + "singleTenantAppId", + "displayName", + "isConfigured", + "whenPartnerDevicesWillBeRemovedDateTime", + "whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceManagementPartner", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartner" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceManagementPartner" + ], + "summary": "Create new navigation property to deviceManagementPartners for deviceManagement", + "operationId": "deviceManagement.CreateDeviceManagementPartners", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartner" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}": { + "get": { + "tags": [ + "deviceManagement.deviceManagementPartner" + ], + "summary": "Get deviceManagementPartners from deviceManagement", + "operationId": "deviceManagement.GetDeviceManagementPartners", + "parameters": [ + { + "name": "deviceManagementPartner-id", + "in": "path", + "description": "key: id of deviceManagementPartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementPartner" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastHeartbeatDateTime", + "partnerState", + "partnerAppType", + "singleTenantAppId", + "displayName", + "isConfigured", + "whenPartnerDevicesWillBeRemovedDateTime", + "whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceManagementPartner" + ], + "summary": "Update the navigation property deviceManagementPartners in deviceManagement", + "operationId": "deviceManagement.UpdateDeviceManagementPartners", + "parameters": [ + { + "name": "deviceManagementPartner-id", + "in": "path", + "description": "key: id of deviceManagementPartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementPartner" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartner" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceManagementPartner" + ], + "summary": "Delete navigation property deviceManagementPartners for deviceManagement", + "operationId": "deviceManagement.DeleteDeviceManagementPartners", + "parameters": [ + { + "name": "deviceManagementPartner-id", + "in": "path", + "description": "key: id of deviceManagementPartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementPartner" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/exchangeConnectors": { + "get": { + "tags": [ + "deviceManagement.deviceManagementExchangeConnector" + ], + "summary": "Get exchangeConnectors from deviceManagement", + "operationId": "deviceManagement.ListExchangeConnectors", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "status", + "status desc", + "primarySmtpAddress", + "primarySmtpAddress desc", + "serverName", + "serverName desc", + "connectorServerName", + "connectorServerName desc", + "exchangeConnectorType", + "exchangeConnectorType desc", + "version", + "version desc", + "exchangeAlias", + "exchangeAlias desc", + "exchangeOrganization", + "exchangeOrganization desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastSyncDateTime", + "status", + "primarySmtpAddress", + "serverName", + "connectorServerName", + "exchangeConnectorType", + "version", + "exchangeAlias", + "exchangeOrganization" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceManagementExchangeConnector", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnector" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceManagementExchangeConnector" + ], + "summary": "Create new navigation property to exchangeConnectors for deviceManagement", + "operationId": "deviceManagement.CreateExchangeConnectors", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnector" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnector" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}": { + "get": { + "tags": [ + "deviceManagement.deviceManagementExchangeConnector" + ], + "summary": "Get exchangeConnectors from deviceManagement", + "operationId": "deviceManagement.GetExchangeConnectors", + "parameters": [ + { + "name": "deviceManagementExchangeConnector-id", + "in": "path", + "description": "key: id of deviceManagementExchangeConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementExchangeConnector" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastSyncDateTime", + "status", + "primarySmtpAddress", + "serverName", + "connectorServerName", + "exchangeConnectorType", + "version", + "exchangeAlias", + "exchangeOrganization" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnector" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceManagementExchangeConnector" + ], + "summary": "Update the navigation property exchangeConnectors in deviceManagement", + "operationId": "deviceManagement.UpdateExchangeConnectors", + "parameters": [ + { + "name": "deviceManagementExchangeConnector-id", + "in": "path", + "description": "key: id of deviceManagementExchangeConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementExchangeConnector" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnector" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceManagementExchangeConnector" + ], + "summary": "Delete navigation property exchangeConnectors for deviceManagement", + "operationId": "deviceManagement.DeleteExchangeConnectors", + "parameters": [ + { + "name": "deviceManagementExchangeConnector-id", + "in": "path", + "description": "key: id of deviceManagementExchangeConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementExchangeConnector" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/sync": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action sync", + "operationId": "deviceManagement.exchangeConnectors.sync", + "parameters": [ + { + "name": "deviceManagementExchangeConnector-id", + "in": "path", + "description": "key: id of deviceManagementExchangeConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementExchangeConnector" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "syncType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnectorSyncType" + } + ] + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/iosUpdateStatuses": { + "get": { + "tags": [ + "deviceManagement.iosUpdateDeviceStatus" + ], + "summary": "Get iosUpdateStatuses from deviceManagement", + "operationId": "deviceManagement.ListIosUpdateStatuses", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "installStatus", + "installStatus desc", + "osVersion", + "osVersion desc", + "deviceId", + "deviceId desc", + "userId", + "userId desc", + "deviceDisplayName", + "deviceDisplayName desc", + "userName", + "userName desc", + "deviceModel", + "deviceModel desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "status", + "status desc", + "lastReportedDateTime", + "lastReportedDateTime desc", + "userPrincipalName", + "userPrincipalName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "installStatus", + "osVersion", + "deviceId", + "userId", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of iosUpdateDeviceStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosUpdateDeviceStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.iosUpdateDeviceStatus" + ], + "summary": "Create new navigation property to iosUpdateStatuses for deviceManagement", + "operationId": "deviceManagement.CreateIosUpdateStatuses", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosUpdateDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosUpdateDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}": { + "get": { + "tags": [ + "deviceManagement.iosUpdateDeviceStatus" + ], + "summary": "Get iosUpdateStatuses from deviceManagement", + "operationId": "deviceManagement.GetIosUpdateStatuses", + "parameters": [ + { + "name": "iosUpdateDeviceStatus-id", + "in": "path", + "description": "key: id of iosUpdateDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosUpdateDeviceStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "installStatus", + "osVersion", + "deviceId", + "userId", + "deviceDisplayName", + "userName", + "deviceModel", + "complianceGracePeriodExpirationDateTime", + "status", + "lastReportedDateTime", + "userPrincipalName" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosUpdateDeviceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.iosUpdateDeviceStatus" + ], + "summary": "Update the navigation property iosUpdateStatuses in deviceManagement", + "operationId": "deviceManagement.UpdateIosUpdateStatuses", + "parameters": [ + { + "name": "iosUpdateDeviceStatus-id", + "in": "path", + "description": "key: id of iosUpdateDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosUpdateDeviceStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.iosUpdateDeviceStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.iosUpdateDeviceStatus" + ], + "summary": "Delete navigation property iosUpdateStatuses for deviceManagement", + "operationId": "deviceManagement.DeleteIosUpdateStatuses", + "parameters": [ + { + "name": "iosUpdateDeviceStatus-id", + "in": "path", + "description": "key: id of iosUpdateDeviceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "iosUpdateDeviceStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDeviceOverview": { + "get": { + "tags": [ + "deviceManagement.managedDeviceOverview" + ], + "summary": "Get managedDeviceOverview from deviceManagement", + "operationId": "deviceManagement.GetManagedDeviceOverview", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "enrolledDeviceCount", + "mdmEnrolledCount", + "dualEnrolledDeviceCount", + "deviceOperatingSystemSummary", + "deviceExchangeAccessStateSummary" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceOverview" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDeviceOverview/$ref": { + "get": { + "tags": [ + "deviceManagement.managedDeviceOverview" + ], + "summary": "Get ref of managedDeviceOverview from deviceManagement", + "operationId": "deviceManagement.GetRefManagedDeviceOverview", + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "deviceManagement.managedDeviceOverview" + ], + "summary": "Update the ref of navigation property managedDeviceOverview in deviceManagement", + "operationId": "deviceManagement.UpdateRefManagedDeviceOverview", + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.managedDeviceOverview" + ], + "summary": "Delete ref of navigation property managedDeviceOverview for deviceManagement", + "operationId": "deviceManagement.DeleteRefManagedDeviceOverview", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices": { + "get": { + "tags": [ + "deviceManagement.managedDevice" + ], + "summary": "Get managedDevices from deviceManagement", + "operationId": "deviceManagement.ListManagedDevices", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userId", + "userId desc", + "deviceName", + "deviceName desc", + "managedDeviceOwnerType", + "managedDeviceOwnerType desc", + "deviceActionResults", + "deviceActionResults desc", + "enrolledDateTime", + "enrolledDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "operatingSystem", + "operatingSystem desc", + "complianceState", + "complianceState desc", + "jailBroken", + "jailBroken desc", + "managementAgent", + "managementAgent desc", + "osVersion", + "osVersion desc", + "easActivated", + "easActivated desc", + "easDeviceId", + "easDeviceId desc", + "easActivationDateTime", + "easActivationDateTime desc", + "azureADRegistered", + "azureADRegistered desc", + "deviceEnrollmentType", + "deviceEnrollmentType desc", + "activationLockBypassCode", + "activationLockBypassCode desc", + "emailAddress", + "emailAddress desc", + "azureADDeviceId", + "azureADDeviceId desc", + "deviceRegistrationState", + "deviceRegistrationState desc", + "deviceCategoryDisplayName", + "deviceCategoryDisplayName desc", + "isSupervised", + "isSupervised desc", + "exchangeLastSuccessfulSyncDateTime", + "exchangeLastSuccessfulSyncDateTime desc", + "exchangeAccessState", + "exchangeAccessState desc", + "exchangeAccessStateReason", + "exchangeAccessStateReason desc", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionUrl desc", + "remoteAssistanceSessionErrorDetails", + "remoteAssistanceSessionErrorDetails desc", + "isEncrypted", + "isEncrypted desc", + "userPrincipalName", + "userPrincipalName desc", + "model", + "model desc", + "manufacturer", + "manufacturer desc", + "imei", + "imei desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "serialNumber", + "serialNumber desc", + "phoneNumber", + "phoneNumber desc", + "androidSecurityPatchLevel", + "androidSecurityPatchLevel desc", + "userDisplayName", + "userDisplayName desc", + "configurationManagerClientEnabledFeatures", + "configurationManagerClientEnabledFeatures desc", + "wiFiMacAddress", + "wiFiMacAddress desc", + "deviceHealthAttestationState", + "deviceHealthAttestationState desc", + "subscriberCarrier", + "subscriberCarrier desc", + "meid", + "meid desc", + "totalStorageSpaceInBytes", + "totalStorageSpaceInBytes desc", + "freeStorageSpaceInBytes", + "freeStorageSpaceInBytes desc", + "managedDeviceName", + "managedDeviceName desc", + "partnerReportedThreatState", + "partnerReportedThreatState desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDevice", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.managedDevice" + ], + "summary": "Create new navigation property to managedDevices for deviceManagement", + "operationId": "deviceManagement.CreateManagedDevices", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}": { + "get": { + "tags": [ + "deviceManagement.managedDevice" + ], + "summary": "Get managedDevices from deviceManagement", + "operationId": "deviceManagement.GetManagedDevices", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.managedDevice" + ], + "summary": "Update the navigation property managedDevices in deviceManagement", + "operationId": "deviceManagement.UpdateManagedDevices", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.managedDevice" + ], + "summary": "Delete navigation property managedDevices for deviceManagement", + "operationId": "deviceManagement.DeleteManagedDevices", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory": { + "get": { + "tags": [ + "deviceManagement.managedDevices.deviceCategory" + ], + "summary": "Get deviceCategory from deviceManagement", + "operationId": "deviceManagement.managedDevices.GetDeviceCategory", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.managedDevices.deviceCategory" + ], + "summary": "Update the navigation property deviceCategory in deviceManagement", + "operationId": "deviceManagement.managedDevices.UpdateDeviceCategory", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.managedDevices.deviceCategory" + ], + "summary": "Delete navigation property deviceCategory for deviceManagement", + "operationId": "deviceManagement.managedDevices.DeleteDeviceCategory", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": { + "get": { + "tags": [ + "deviceManagement.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Get deviceCompliancePolicyStates from deviceManagement", + "operationId": "deviceManagement.managedDevices.ListDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingStates", + "settingStates desc", + "displayName", + "displayName desc", + "version", + "version desc", + "platformType", + "platformType desc", + "state", + "state desc", + "settingCount", + "settingCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCompliancePolicyState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Create new navigation property to deviceCompliancePolicyStates for deviceManagement", + "operationId": "deviceManagement.managedDevices.CreateDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": { + "get": { + "tags": [ + "deviceManagement.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Get deviceCompliancePolicyStates from deviceManagement", + "operationId": "deviceManagement.managedDevices.GetDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Update the navigation property deviceCompliancePolicyStates in deviceManagement", + "operationId": "deviceManagement.managedDevices.UpdateDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Delete navigation property deviceCompliancePolicyStates for deviceManagement", + "operationId": "deviceManagement.managedDevices.DeleteDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates": { + "get": { + "tags": [ + "deviceManagement.managedDevices.deviceConfigurationState" + ], + "summary": "Get deviceConfigurationStates from deviceManagement", + "operationId": "deviceManagement.managedDevices.ListDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingStates", + "settingStates desc", + "displayName", + "displayName desc", + "version", + "version desc", + "platformType", + "platformType desc", + "state", + "state desc", + "settingCount", + "settingCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfigurationState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.managedDevices.deviceConfigurationState" + ], + "summary": "Create new navigation property to deviceConfigurationStates for deviceManagement", + "operationId": "deviceManagement.managedDevices.CreateDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": { + "get": { + "tags": [ + "deviceManagement.managedDevices.deviceConfigurationState" + ], + "summary": "Get deviceConfigurationStates from deviceManagement", + "operationId": "deviceManagement.managedDevices.GetDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.managedDevices.deviceConfigurationState" + ], + "summary": "Update the navigation property deviceConfigurationStates in deviceManagement", + "operationId": "deviceManagement.managedDevices.UpdateDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.managedDevices.deviceConfigurationState" + ], + "summary": "Delete navigation property deviceConfigurationStates for deviceManagement", + "operationId": "deviceManagement.managedDevices.DeleteDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action bypassActivationLock", + "operationId": "deviceManagement.managedDevices.bypassActivationLock", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action cleanWindowsDevice", + "operationId": "deviceManagement.managedDevices.cleanWindowsDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "keepUserData": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action deleteUserFromSharedAppleDevice", + "operationId": "deviceManagement.managedDevices.deleteUserFromSharedAppleDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "userPrincipalName": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action disableLostMode", + "operationId": "deviceManagement.managedDevices.disableLostMode", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action locateDevice", + "operationId": "deviceManagement.managedDevices.locateDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action logoutSharedAppleDeviceActiveUser", + "operationId": "deviceManagement.managedDevices.logoutSharedAppleDeviceActiveUser", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action rebootNow", + "operationId": "deviceManagement.managedDevices.rebootNow", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action recoverPasscode", + "operationId": "deviceManagement.managedDevices.recoverPasscode", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action remoteLock", + "operationId": "deviceManagement.managedDevices.remoteLock", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action requestRemoteAssistance", + "operationId": "deviceManagement.managedDevices.requestRemoteAssistance", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action resetPasscode", + "operationId": "deviceManagement.managedDevices.resetPasscode", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/retire": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action retire", + "operationId": "deviceManagement.managedDevices.retire", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/shutDown": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action shutDown", + "operationId": "deviceManagement.managedDevices.shutDown", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action syncDevice", + "operationId": "deviceManagement.managedDevices.syncDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action updateWindowsDeviceAccount", + "operationId": "deviceManagement.managedDevices.updateWindowsDeviceAccount", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "updateWindowsDeviceAccountActionParameter": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.updateWindowsDeviceAccountActionParameter" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action windowsDefenderScan", + "operationId": "deviceManagement.managedDevices.windowsDefenderScan", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "quickScan": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action windowsDefenderUpdateSignatures", + "operationId": "deviceManagement.managedDevices.windowsDefenderUpdateSignatures", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/managedDevices/{managedDevice-id}/wipe": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action wipe", + "operationId": "deviceManagement.managedDevices.wipe", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "keepEnrollmentData": { + "type": "boolean", + "default": false, + "nullable": true + }, + "keepUserData": { + "type": "boolean", + "default": false, + "nullable": true + }, + "macOsUnlockCode": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/getEffectivePermissions(scope={scope})": { + "get": { + "tags": [ + "deviceManagement.Functions" + ], + "summary": "Invoke function getEffectivePermissions", + "operationId": "deviceManagement.getEffectivePermissions", + "parameters": [ + { + "name": "scope", + "in": "path", + "description": "Usage: scope={scope}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.rolePermission" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName={domainName})": { + "get": { + "tags": [ + "deviceManagement.Functions" + ], + "summary": "Invoke function verifyWindowsEnrollmentAutoDiscovery", + "operationId": "deviceManagement.verifyWindowsEnrollmentAutoDiscovery", + "parameters": [ + { + "name": "domainName", + "in": "path", + "description": "Usage: domainName={domainName}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "boolean", + "default": false + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/deviceManagement/mobileThreatDefenseConnectors": { + "get": { + "tags": [ + "deviceManagement.mobileThreatDefenseConnector" + ], + "summary": "Get mobileThreatDefenseConnectors from deviceManagement", + "operationId": "deviceManagement.ListMobileThreatDefenseConnectors", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastHeartbeatDateTime", + "lastHeartbeatDateTime desc", + "partnerState", + "partnerState desc", + "androidEnabled", + "androidEnabled desc", + "iosEnabled", + "iosEnabled desc", + "androidDeviceBlockedOnMissingPartnerData", + "androidDeviceBlockedOnMissingPartnerData desc", + "iosDeviceBlockedOnMissingPartnerData", + "iosDeviceBlockedOnMissingPartnerData desc", + "partnerUnsupportedOsVersionBlocked", + "partnerUnsupportedOsVersionBlocked desc", + "partnerUnresponsivenessThresholdInDays", + "partnerUnresponsivenessThresholdInDays desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastHeartbeatDateTime", + "partnerState", + "androidEnabled", + "iosEnabled", + "androidDeviceBlockedOnMissingPartnerData", + "iosDeviceBlockedOnMissingPartnerData", + "partnerUnsupportedOsVersionBlocked", + "partnerUnresponsivenessThresholdInDays" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mobileThreatDefenseConnector", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatDefenseConnector" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.mobileThreatDefenseConnector" + ], + "summary": "Create new navigation property to mobileThreatDefenseConnectors for deviceManagement", + "operationId": "deviceManagement.CreateMobileThreatDefenseConnectors", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatDefenseConnector" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatDefenseConnector" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}": { + "get": { + "tags": [ + "deviceManagement.mobileThreatDefenseConnector" + ], + "summary": "Get mobileThreatDefenseConnectors from deviceManagement", + "operationId": "deviceManagement.GetMobileThreatDefenseConnectors", + "parameters": [ + { + "name": "mobileThreatDefenseConnector-id", + "in": "path", + "description": "key: id of mobileThreatDefenseConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileThreatDefenseConnector" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastHeartbeatDateTime", + "partnerState", + "androidEnabled", + "iosEnabled", + "androidDeviceBlockedOnMissingPartnerData", + "iosDeviceBlockedOnMissingPartnerData", + "partnerUnsupportedOsVersionBlocked", + "partnerUnresponsivenessThresholdInDays" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatDefenseConnector" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.mobileThreatDefenseConnector" + ], + "summary": "Update the navigation property mobileThreatDefenseConnectors in deviceManagement", + "operationId": "deviceManagement.UpdateMobileThreatDefenseConnectors", + "parameters": [ + { + "name": "mobileThreatDefenseConnector-id", + "in": "path", + "description": "key: id of mobileThreatDefenseConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileThreatDefenseConnector" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatDefenseConnector" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.mobileThreatDefenseConnector" + ], + "summary": "Delete navigation property mobileThreatDefenseConnectors for deviceManagement", + "operationId": "deviceManagement.DeleteMobileThreatDefenseConnectors", + "parameters": [ + { + "name": "mobileThreatDefenseConnector-id", + "in": "path", + "description": "key: id of mobileThreatDefenseConnector", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mobileThreatDefenseConnector" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/notificationMessageTemplates": { + "get": { + "tags": [ + "deviceManagement.notificationMessageTemplate" + ], + "summary": "Get notificationMessageTemplates from deviceManagement", + "operationId": "deviceManagement.ListNotificationMessageTemplates", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "displayName", + "displayName desc", + "defaultLocale", + "defaultLocale desc", + "brandingOptions", + "brandingOptions desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "displayName", + "defaultLocale", + "brandingOptions", + "localizedNotificationMessages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "localizedNotificationMessages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of notificationMessageTemplate", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notificationMessageTemplate" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.notificationMessageTemplate" + ], + "summary": "Create new navigation property to notificationMessageTemplates for deviceManagement", + "operationId": "deviceManagement.CreateNotificationMessageTemplates", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notificationMessageTemplate" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notificationMessageTemplate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}": { + "get": { + "tags": [ + "deviceManagement.notificationMessageTemplate" + ], + "summary": "Get notificationMessageTemplates from deviceManagement", + "operationId": "deviceManagement.GetNotificationMessageTemplates", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "displayName", + "defaultLocale", + "brandingOptions", + "localizedNotificationMessages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "localizedNotificationMessages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notificationMessageTemplate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.notificationMessageTemplate" + ], + "summary": "Update the navigation property notificationMessageTemplates in deviceManagement", + "operationId": "deviceManagement.UpdateNotificationMessageTemplates", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notificationMessageTemplate" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.notificationMessageTemplate" + ], + "summary": "Delete navigation property notificationMessageTemplates for deviceManagement", + "operationId": "deviceManagement.DeleteNotificationMessageTemplates", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages": { + "get": { + "tags": [ + "deviceManagement.notificationMessageTemplates.localizedNotificationMessage" + ], + "summary": "Get localizedNotificationMessages from deviceManagement", + "operationId": "deviceManagement.notificationMessageTemplates.ListLocalizedNotificationMessages", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "locale", + "locale desc", + "subject", + "subject desc", + "messageTemplate", + "messageTemplate desc", + "isDefault", + "isDefault desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "locale", + "subject", + "messageTemplate", + "isDefault" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of localizedNotificationMessage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.localizedNotificationMessage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.notificationMessageTemplates.localizedNotificationMessage" + ], + "summary": "Create new navigation property to localizedNotificationMessages for deviceManagement", + "operationId": "deviceManagement.notificationMessageTemplates.CreateLocalizedNotificationMessages", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.localizedNotificationMessage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.localizedNotificationMessage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}": { + "get": { + "tags": [ + "deviceManagement.notificationMessageTemplates.localizedNotificationMessage" + ], + "summary": "Get localizedNotificationMessages from deviceManagement", + "operationId": "deviceManagement.notificationMessageTemplates.GetLocalizedNotificationMessages", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + }, + { + "name": "localizedNotificationMessage-id", + "in": "path", + "description": "key: id of localizedNotificationMessage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "localizedNotificationMessage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "locale", + "subject", + "messageTemplate", + "isDefault" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.localizedNotificationMessage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.notificationMessageTemplates.localizedNotificationMessage" + ], + "summary": "Update the navigation property localizedNotificationMessages in deviceManagement", + "operationId": "deviceManagement.notificationMessageTemplates.UpdateLocalizedNotificationMessages", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + }, + { + "name": "localizedNotificationMessage-id", + "in": "path", + "description": "key: id of localizedNotificationMessage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "localizedNotificationMessage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.localizedNotificationMessage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.notificationMessageTemplates.localizedNotificationMessage" + ], + "summary": "Delete navigation property localizedNotificationMessages for deviceManagement", + "operationId": "deviceManagement.notificationMessageTemplates.DeleteLocalizedNotificationMessages", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + }, + { + "name": "localizedNotificationMessage-id", + "in": "path", + "description": "key: id of localizedNotificationMessage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "localizedNotificationMessage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action sendTestMessage", + "operationId": "deviceManagement.notificationMessageTemplates.sendTestMessage", + "parameters": [ + { + "name": "notificationMessageTemplate-id", + "in": "path", + "description": "key: id of notificationMessageTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notificationMessageTemplate" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/remoteAssistancePartners": { + "get": { + "tags": [ + "deviceManagement.remoteAssistancePartner" + ], + "summary": "Get remoteAssistancePartners from deviceManagement", + "operationId": "deviceManagement.ListRemoteAssistancePartners", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "onboardingUrl", + "onboardingUrl desc", + "onboardingStatus", + "onboardingStatus desc", + "lastConnectionDateTime", + "lastConnectionDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "onboardingUrl", + "onboardingStatus", + "lastConnectionDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of remoteAssistancePartner", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistancePartner" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.remoteAssistancePartner" + ], + "summary": "Create new navigation property to remoteAssistancePartners for deviceManagement", + "operationId": "deviceManagement.CreateRemoteAssistancePartners", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistancePartner" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistancePartner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}": { + "get": { + "tags": [ + "deviceManagement.remoteAssistancePartner" + ], + "summary": "Get remoteAssistancePartners from deviceManagement", + "operationId": "deviceManagement.GetRemoteAssistancePartners", + "parameters": [ + { + "name": "remoteAssistancePartner-id", + "in": "path", + "description": "key: id of remoteAssistancePartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "remoteAssistancePartner" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "onboardingUrl", + "onboardingStatus", + "lastConnectionDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistancePartner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.remoteAssistancePartner" + ], + "summary": "Update the navigation property remoteAssistancePartners in deviceManagement", + "operationId": "deviceManagement.UpdateRemoteAssistancePartners", + "parameters": [ + { + "name": "remoteAssistancePartner-id", + "in": "path", + "description": "key: id of remoteAssistancePartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "remoteAssistancePartner" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistancePartner" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.remoteAssistancePartner" + ], + "summary": "Delete navigation property remoteAssistancePartners for deviceManagement", + "operationId": "deviceManagement.DeleteRemoteAssistancePartners", + "parameters": [ + { + "name": "remoteAssistancePartner-id", + "in": "path", + "description": "key: id of remoteAssistancePartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "remoteAssistancePartner" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/beginOnboarding": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action beginOnboarding", + "operationId": "deviceManagement.remoteAssistancePartners.beginOnboarding", + "parameters": [ + { + "name": "remoteAssistancePartner-id", + "in": "path", + "description": "key: id of remoteAssistancePartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "remoteAssistancePartner" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect": { + "post": { + "tags": [ + "deviceManagement.Actions" + ], + "summary": "Invoke action disconnect", + "operationId": "deviceManagement.remoteAssistancePartners.disconnect", + "parameters": [ + { + "name": "remoteAssistancePartner-id", + "in": "path", + "description": "key: id of remoteAssistancePartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "remoteAssistancePartner" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/deviceManagement/resourceOperations": { + "get": { + "tags": [ + "deviceManagement.resourceOperation" + ], + "summary": "Get resourceOperations from deviceManagement", + "operationId": "deviceManagement.ListResourceOperations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "resourceName", + "resourceName desc", + "actionName", + "actionName desc", + "description", + "description desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "resourceName", + "actionName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of resourceOperation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.resourceOperation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.resourceOperation" + ], + "summary": "Create new navigation property to resourceOperations for deviceManagement", + "operationId": "deviceManagement.CreateResourceOperations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.resourceOperation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.resourceOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/resourceOperations/{resourceOperation-id}": { + "get": { + "tags": [ + "deviceManagement.resourceOperation" + ], + "summary": "Get resourceOperations from deviceManagement", + "operationId": "deviceManagement.GetResourceOperations", + "parameters": [ + { + "name": "resourceOperation-id", + "in": "path", + "description": "key: id of resourceOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "resourceOperation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "resourceName", + "actionName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.resourceOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.resourceOperation" + ], + "summary": "Update the navigation property resourceOperations in deviceManagement", + "operationId": "deviceManagement.UpdateResourceOperations", + "parameters": [ + { + "name": "resourceOperation-id", + "in": "path", + "description": "key: id of resourceOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "resourceOperation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.resourceOperation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.resourceOperation" + ], + "summary": "Delete navigation property resourceOperations for deviceManagement", + "operationId": "deviceManagement.DeleteResourceOperations", + "parameters": [ + { + "name": "resourceOperation-id", + "in": "path", + "description": "key: id of resourceOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "resourceOperation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleAssignments": { + "get": { + "tags": [ + "deviceManagement.deviceAndAppManagementRoleAssignment" + ], + "summary": "Get roleAssignments from deviceManagement", + "operationId": "deviceManagement.ListRoleAssignments", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "resourceScopes", + "resourceScopes desc", + "members", + "members desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "resourceScopes", + "members", + "roleDefinition" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleDefinition" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceAndAppManagementRoleAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementRoleAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceAndAppManagementRoleAssignment" + ], + "summary": "Create new navigation property to roleAssignments for deviceManagement", + "operationId": "deviceManagement.CreateRoleAssignments", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementRoleAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementRoleAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}": { + "get": { + "tags": [ + "deviceManagement.deviceAndAppManagementRoleAssignment" + ], + "summary": "Get roleAssignments from deviceManagement", + "operationId": "deviceManagement.GetRoleAssignments", + "parameters": [ + { + "name": "deviceAndAppManagementRoleAssignment-id", + "in": "path", + "description": "key: id of deviceAndAppManagementRoleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceAndAppManagementRoleAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "resourceScopes", + "members", + "roleDefinition" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleDefinition" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementRoleAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceAndAppManagementRoleAssignment" + ], + "summary": "Update the navigation property roleAssignments in deviceManagement", + "operationId": "deviceManagement.UpdateRoleAssignments", + "parameters": [ + { + "name": "deviceAndAppManagementRoleAssignment-id", + "in": "path", + "description": "key: id of deviceAndAppManagementRoleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceAndAppManagementRoleAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementRoleAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceAndAppManagementRoleAssignment" + ], + "summary": "Delete navigation property roleAssignments for deviceManagement", + "operationId": "deviceManagement.DeleteRoleAssignments", + "parameters": [ + { + "name": "deviceAndAppManagementRoleAssignment-id", + "in": "path", + "description": "key: id of deviceAndAppManagementRoleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceAndAppManagementRoleAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleDefinitions": { + "get": { + "tags": [ + "deviceManagement.roleDefinition" + ], + "summary": "Get roleDefinitions from deviceManagement", + "operationId": "deviceManagement.ListRoleDefinitions", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "rolePermissions", + "rolePermissions desc", + "isBuiltIn", + "isBuiltIn desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "rolePermissions", + "isBuiltIn", + "roleAssignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleAssignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of roleDefinition", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.roleDefinition" + ], + "summary": "Create new navigation property to roleDefinitions for deviceManagement", + "operationId": "deviceManagement.CreateRoleDefinitions", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleDefinitions/{roleDefinition-id}": { + "get": { + "tags": [ + "deviceManagement.roleDefinition" + ], + "summary": "Get roleDefinitions from deviceManagement", + "operationId": "deviceManagement.GetRoleDefinitions", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "rolePermissions", + "isBuiltIn", + "roleAssignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleAssignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.roleDefinition" + ], + "summary": "Update the navigation property roleDefinitions in deviceManagement", + "operationId": "deviceManagement.UpdateRoleDefinitions", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.roleDefinition" + ], + "summary": "Delete navigation property roleDefinitions for deviceManagement", + "operationId": "deviceManagement.DeleteRoleDefinitions", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments": { + "get": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignment" + ], + "summary": "Get roleAssignments from deviceManagement", + "operationId": "deviceManagement.roleDefinitions.ListRoleAssignments", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "resourceScopes", + "resourceScopes desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "resourceScopes", + "roleDefinition" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleDefinition" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of roleAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignment" + ], + "summary": "Create new navigation property to roleAssignments for deviceManagement", + "operationId": "deviceManagement.roleDefinitions.CreateRoleAssignments", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}": { + "get": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignment" + ], + "summary": "Get roleAssignments from deviceManagement", + "operationId": "deviceManagement.roleDefinitions.GetRoleAssignments", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "resourceScopes", + "roleDefinition" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleDefinition" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignment" + ], + "summary": "Update the navigation property roleAssignments in deviceManagement", + "operationId": "deviceManagement.roleDefinitions.UpdateRoleAssignments", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignment" + ], + "summary": "Delete navigation property roleAssignments for deviceManagement", + "operationId": "deviceManagement.roleDefinitions.DeleteRoleAssignments", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition": { + "get": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignments.roleDefinition" + ], + "summary": "Get roleDefinition from deviceManagement", + "operationId": "deviceManagement.roleDefinitions.roleAssignments.GetRoleDefinition", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "rolePermissions", + "isBuiltIn", + "roleAssignments" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "roleAssignments" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref": { + "get": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignments.roleDefinition" + ], + "summary": "Get ref of roleDefinition from deviceManagement", + "operationId": "deviceManagement.roleDefinitions.roleAssignments.GetRefRoleDefinition", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignments.roleDefinition" + ], + "summary": "Update the ref of navigation property roleDefinition in deviceManagement", + "operationId": "deviceManagement.roleDefinitions.roleAssignments.UpdateRefRoleDefinition", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.roleDefinitions.roleAssignments.roleDefinition" + ], + "summary": "Delete ref of navigation property roleDefinition for deviceManagement", + "operationId": "deviceManagement.roleDefinitions.roleAssignments.DeleteRefRoleDefinition", + "parameters": [ + { + "name": "roleDefinition-id", + "in": "path", + "description": "key: id of roleDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleDefinition" + }, + { + "name": "roleAssignment-id", + "in": "path", + "description": "key: id of roleAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "roleAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/softwareUpdateStatusSummary": { + "get": { + "tags": [ + "deviceManagement.softwareUpdateStatusSummary" + ], + "summary": "Get softwareUpdateStatusSummary from deviceManagement", + "operationId": "deviceManagement.GetSoftwareUpdateStatusSummary", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "compliantDeviceCount", + "nonCompliantDeviceCount", + "remediatedDeviceCount", + "errorDeviceCount", + "unknownDeviceCount", + "conflictDeviceCount", + "notApplicableDeviceCount", + "compliantUserCount", + "nonCompliantUserCount", + "remediatedUserCount", + "errorUserCount", + "unknownUserCount", + "conflictUserCount", + "notApplicableUserCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.softwareUpdateStatusSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/softwareUpdateStatusSummary/$ref": { + "get": { + "tags": [ + "deviceManagement.softwareUpdateStatusSummary" + ], + "summary": "Get ref of softwareUpdateStatusSummary from deviceManagement", + "operationId": "deviceManagement.GetRefSoftwareUpdateStatusSummary", + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "deviceManagement.softwareUpdateStatusSummary" + ], + "summary": "Update the ref of navigation property softwareUpdateStatusSummary in deviceManagement", + "operationId": "deviceManagement.UpdateRefSoftwareUpdateStatusSummary", + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.softwareUpdateStatusSummary" + ], + "summary": "Delete ref of navigation property softwareUpdateStatusSummary for deviceManagement", + "operationId": "deviceManagement.DeleteRefSoftwareUpdateStatusSummary", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/telecomExpenseManagementPartners": { + "get": { + "tags": [ + "deviceManagement.telecomExpenseManagementPartner" + ], + "summary": "Get telecomExpenseManagementPartners from deviceManagement", + "operationId": "deviceManagement.ListTelecomExpenseManagementPartners", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "url", + "url desc", + "appAuthorized", + "appAuthorized desc", + "enabled", + "enabled desc", + "lastConnectionDateTime", + "lastConnectionDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "url", + "appAuthorized", + "enabled", + "lastConnectionDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of telecomExpenseManagementPartner", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.telecomExpenseManagementPartner" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.telecomExpenseManagementPartner" + ], + "summary": "Create new navigation property to telecomExpenseManagementPartners for deviceManagement", + "operationId": "deviceManagement.CreateTelecomExpenseManagementPartners", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.telecomExpenseManagementPartner" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.telecomExpenseManagementPartner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}": { + "get": { + "tags": [ + "deviceManagement.telecomExpenseManagementPartner" + ], + "summary": "Get telecomExpenseManagementPartners from deviceManagement", + "operationId": "deviceManagement.GetTelecomExpenseManagementPartners", + "parameters": [ + { + "name": "telecomExpenseManagementPartner-id", + "in": "path", + "description": "key: id of telecomExpenseManagementPartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "telecomExpenseManagementPartner" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "url", + "appAuthorized", + "enabled", + "lastConnectionDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.telecomExpenseManagementPartner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.telecomExpenseManagementPartner" + ], + "summary": "Update the navigation property telecomExpenseManagementPartners in deviceManagement", + "operationId": "deviceManagement.UpdateTelecomExpenseManagementPartners", + "parameters": [ + { + "name": "telecomExpenseManagementPartner-id", + "in": "path", + "description": "key: id of telecomExpenseManagementPartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "telecomExpenseManagementPartner" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.telecomExpenseManagementPartner" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.telecomExpenseManagementPartner" + ], + "summary": "Delete navigation property telecomExpenseManagementPartners for deviceManagement", + "operationId": "deviceManagement.DeleteTelecomExpenseManagementPartners", + "parameters": [ + { + "name": "telecomExpenseManagementPartner-id", + "in": "path", + "description": "key: id of telecomExpenseManagementPartner", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "telecomExpenseManagementPartner" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions" + ], + "summary": "Get termsAndConditions from deviceManagement", + "operationId": "deviceManagement.ListTermsAndConditions", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "displayName", + "displayName desc", + "description", + "description desc", + "title", + "title desc", + "bodyText", + "bodyText desc", + "acceptanceStatement", + "acceptanceStatement desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "displayName", + "description", + "title", + "bodyText", + "acceptanceStatement", + "version", + "assignments", + "acceptanceStatuses" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "acceptanceStatuses" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of termsAndConditions", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.termsAndConditions" + ], + "summary": "Create new navigation property to termsAndConditions for deviceManagement", + "operationId": "deviceManagement.CreateTermsAndConditions", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions" + ], + "summary": "Get termsAndConditions from deviceManagement", + "operationId": "deviceManagement.GetTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "displayName", + "description", + "title", + "bodyText", + "acceptanceStatement", + "version", + "assignments", + "acceptanceStatuses" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "acceptanceStatuses" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.termsAndConditions" + ], + "summary": "Update the navigation property termsAndConditions in deviceManagement", + "operationId": "deviceManagement.UpdateTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.termsAndConditions" + ], + "summary": "Delete navigation property termsAndConditions for deviceManagement", + "operationId": "deviceManagement.DeleteTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAcceptanceStatus" + ], + "summary": "Get acceptanceStatuses from deviceManagement", + "operationId": "deviceManagement.termsAndConditions.ListAcceptanceStatuses", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userDisplayName", + "userDisplayName desc", + "acceptedVersion", + "acceptedVersion desc", + "acceptedDateTime", + "acceptedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "acceptedVersion", + "acceptedDateTime", + "termsAndConditions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "termsAndConditions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of termsAndConditionsAcceptanceStatus", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAcceptanceStatus" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAcceptanceStatus" + ], + "summary": "Create new navigation property to acceptanceStatuses for deviceManagement", + "operationId": "deviceManagement.termsAndConditions.CreateAcceptanceStatuses", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAcceptanceStatus" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAcceptanceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAcceptanceStatus" + ], + "summary": "Get acceptanceStatuses from deviceManagement", + "operationId": "deviceManagement.termsAndConditions.GetAcceptanceStatuses", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userDisplayName", + "acceptedVersion", + "acceptedDateTime", + "termsAndConditions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "termsAndConditions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAcceptanceStatus" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAcceptanceStatus" + ], + "summary": "Update the navigation property acceptanceStatuses in deviceManagement", + "operationId": "deviceManagement.termsAndConditions.UpdateAcceptanceStatuses", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAcceptanceStatus" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAcceptanceStatus" + ], + "summary": "Delete navigation property acceptanceStatuses for deviceManagement", + "operationId": "deviceManagement.termsAndConditions.DeleteAcceptanceStatuses", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions.acceptanceStatuses.termsAndConditions" + ], + "summary": "Get termsAndConditions from deviceManagement", + "operationId": "deviceManagement.termsAndConditions.acceptanceStatuses.GetTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "displayName", + "description", + "title", + "bodyText", + "acceptanceStatement", + "version", + "assignments", + "acceptanceStatuses" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "assignments", + "acceptanceStatuses" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions.acceptanceStatuses.termsAndConditions" + ], + "summary": "Get ref of termsAndConditions from deviceManagement", + "operationId": "deviceManagement.termsAndConditions.acceptanceStatuses.GetRefTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "deviceManagement.termsAndConditions.acceptanceStatuses.termsAndConditions" + ], + "summary": "Update the ref of navigation property termsAndConditions in deviceManagement", + "operationId": "deviceManagement.termsAndConditions.acceptanceStatuses.UpdateRefTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.termsAndConditions.acceptanceStatuses.termsAndConditions" + ], + "summary": "Delete ref of navigation property termsAndConditions for deviceManagement", + "operationId": "deviceManagement.termsAndConditions.acceptanceStatuses.DeleteRefTermsAndConditions", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAcceptanceStatus-id", + "in": "path", + "description": "key: id of termsAndConditionsAcceptanceStatus", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAcceptanceStatus" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.termsAndConditions.ListAssignments", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "target", + "target desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of termsAndConditionsAssignment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAssignment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAssignment" + ], + "summary": "Create new navigation property to assignments for deviceManagement", + "operationId": "deviceManagement.termsAndConditions.CreateAssignments", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAssignment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}": { + "get": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAssignment" + ], + "summary": "Get assignments from deviceManagement", + "operationId": "deviceManagement.termsAndConditions.GetAssignments", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAssignment-id", + "in": "path", + "description": "key: id of termsAndConditionsAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAssignment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "target" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAssignment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAssignment" + ], + "summary": "Update the navigation property assignments in deviceManagement", + "operationId": "deviceManagement.termsAndConditions.UpdateAssignments", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAssignment-id", + "in": "path", + "description": "key: id of termsAndConditionsAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAssignment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAssignment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.termsAndConditions.termsAndConditionsAssignment" + ], + "summary": "Delete navigation property assignments for deviceManagement", + "operationId": "deviceManagement.termsAndConditions.DeleteAssignments", + "parameters": [ + { + "name": "termsAndConditions-id", + "in": "path", + "description": "key: id of termsAndConditions", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditions" + }, + { + "name": "termsAndConditionsAssignment-id", + "in": "path", + "description": "key: id of termsAndConditionsAssignment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "termsAndConditionsAssignment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/troubleshootingEvents": { + "get": { + "tags": [ + "deviceManagement.deviceManagementTroubleshootingEvent" + ], + "summary": "Get troubleshootingEvents from deviceManagement", + "operationId": "deviceManagement.ListTroubleshootingEvents", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "eventDateTime", + "eventDateTime desc", + "correlationId", + "correlationId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "eventDateTime", + "correlationId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceManagementTroubleshootingEvent", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.deviceManagementTroubleshootingEvent" + ], + "summary": "Create new navigation property to troubleshootingEvents for deviceManagement", + "operationId": "deviceManagement.CreateTroubleshootingEvents", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": { + "get": { + "tags": [ + "deviceManagement.deviceManagementTroubleshootingEvent" + ], + "summary": "Get troubleshootingEvents from deviceManagement", + "operationId": "deviceManagement.GetTroubleshootingEvents", + "parameters": [ + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "eventDateTime", + "correlationId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.deviceManagementTroubleshootingEvent" + ], + "summary": "Update the navigation property troubleshootingEvents in deviceManagement", + "operationId": "deviceManagement.UpdateTroubleshootingEvents", + "parameters": [ + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.deviceManagementTroubleshootingEvent" + ], + "summary": "Delete navigation property troubleshootingEvents for deviceManagement", + "operationId": "deviceManagement.DeleteTroubleshootingEvents", + "parameters": [ + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/windowsInformationProtectionAppLearningSummaries": { + "get": { + "tags": [ + "deviceManagement.windowsInformationProtectionAppLearningSummary" + ], + "summary": "Get windowsInformationProtectionAppLearningSummaries from deviceManagement", + "operationId": "deviceManagement.ListWindowsInformationProtectionAppLearningSummaries", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "applicationName", + "applicationName desc", + "applicationType", + "applicationType desc", + "deviceCount", + "deviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "applicationName", + "applicationType", + "deviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of windowsInformationProtectionAppLearningSummary", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLearningSummary" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.windowsInformationProtectionAppLearningSummary" + ], + "summary": "Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement", + "operationId": "deviceManagement.CreateWindowsInformationProtectionAppLearningSummaries", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLearningSummary" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLearningSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}": { + "get": { + "tags": [ + "deviceManagement.windowsInformationProtectionAppLearningSummary" + ], + "summary": "Get windowsInformationProtectionAppLearningSummaries from deviceManagement", + "operationId": "deviceManagement.GetWindowsInformationProtectionAppLearningSummaries", + "parameters": [ + { + "name": "windowsInformationProtectionAppLearningSummary-id", + "in": "path", + "description": "key: id of windowsInformationProtectionAppLearningSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionAppLearningSummary" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "applicationName", + "applicationType", + "deviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLearningSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.windowsInformationProtectionAppLearningSummary" + ], + "summary": "Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement", + "operationId": "deviceManagement.UpdateWindowsInformationProtectionAppLearningSummaries", + "parameters": [ + { + "name": "windowsInformationProtectionAppLearningSummary-id", + "in": "path", + "description": "key: id of windowsInformationProtectionAppLearningSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionAppLearningSummary" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLearningSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.windowsInformationProtectionAppLearningSummary" + ], + "summary": "Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement", + "operationId": "deviceManagement.DeleteWindowsInformationProtectionAppLearningSummaries", + "parameters": [ + { + "name": "windowsInformationProtectionAppLearningSummary-id", + "in": "path", + "description": "key: id of windowsInformationProtectionAppLearningSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionAppLearningSummary" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries": { + "get": { + "tags": [ + "deviceManagement.windowsInformationProtectionNetworkLearningSummary" + ], + "summary": "Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement", + "operationId": "deviceManagement.ListWindowsInformationProtectionNetworkLearningSummaries", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "url", + "url desc", + "deviceCount", + "deviceCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "url", + "deviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of windowsInformationProtectionNetworkLearningSummary", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "deviceManagement.windowsInformationProtectionNetworkLearningSummary" + ], + "summary": "Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement", + "operationId": "deviceManagement.CreateWindowsInformationProtectionNetworkLearningSummaries", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}": { + "get": { + "tags": [ + "deviceManagement.windowsInformationProtectionNetworkLearningSummary" + ], + "summary": "Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement", + "operationId": "deviceManagement.GetWindowsInformationProtectionNetworkLearningSummaries", + "parameters": [ + { + "name": "windowsInformationProtectionNetworkLearningSummary-id", + "in": "path", + "description": "key: id of windowsInformationProtectionNetworkLearningSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionNetworkLearningSummary" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "url", + "deviceCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "deviceManagement.windowsInformationProtectionNetworkLearningSummary" + ], + "summary": "Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement", + "operationId": "deviceManagement.UpdateWindowsInformationProtectionNetworkLearningSummaries", + "parameters": [ + { + "name": "windowsInformationProtectionNetworkLearningSummary-id", + "in": "path", + "description": "key: id of windowsInformationProtectionNetworkLearningSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionNetworkLearningSummary" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "deviceManagement.windowsInformationProtectionNetworkLearningSummary" + ], + "summary": "Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement", + "operationId": "deviceManagement.DeleteWindowsInformationProtectionNetworkLearningSummaries", + "parameters": [ + { + "name": "windowsInformationProtectionNetworkLearningSummary-id", + "in": "path", + "description": "key: id of windowsInformationProtectionNetworkLearningSummary", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "windowsInformationProtectionNetworkLearningSummary" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices": { + "get": { + "tags": [ + "devices.device" + ], + "summary": "Get entities from devices", + "operationId": "devices.device.ListDevice", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "accountEnabled", + "accountEnabled desc", + "alternativeSecurityIds", + "alternativeSecurityIds desc", + "approximateLastSignInDateTime", + "approximateLastSignInDateTime desc", + "deviceId", + "deviceId desc", + "deviceMetadata", + "deviceMetadata desc", + "deviceVersion", + "deviceVersion desc", + "displayName", + "displayName desc", + "isCompliant", + "isCompliant desc", + "isManaged", + "isManaged desc", + "onPremisesLastSyncDateTime", + "onPremisesLastSyncDateTime desc", + "onPremisesSyncEnabled", + "onPremisesSyncEnabled desc", + "operatingSystem", + "operatingSystem desc", + "operatingSystemVersion", + "operatingSystemVersion desc", + "physicalIds", + "physicalIds desc", + "trustType", + "trustType desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "alternativeSecurityIds", + "approximateLastSignInDateTime", + "deviceId", + "deviceMetadata", + "deviceVersion", + "displayName", + "isCompliant", + "isManaged", + "onPremisesLastSyncDateTime", + "onPremisesSyncEnabled", + "operatingSystem", + "operatingSystemVersion", + "physicalIds", + "trustType", + "registeredOwners", + "registeredUsers", + "extensions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of device", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.device" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "devices.device" + ], + "summary": "Add new entity to devices", + "operationId": "devices.device.CreateDevice", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.device" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.device" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}": { + "get": { + "tags": [ + "devices.device" + ], + "summary": "Get entity from devices by key", + "operationId": "devices.device.GetDevice", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "alternativeSecurityIds", + "approximateLastSignInDateTime", + "deviceId", + "deviceMetadata", + "deviceVersion", + "displayName", + "isCompliant", + "isManaged", + "onPremisesLastSyncDateTime", + "onPremisesSyncEnabled", + "operatingSystem", + "operatingSystemVersion", + "physicalIds", + "trustType", + "registeredOwners", + "registeredUsers", + "extensions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.device" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "devices.device" + ], + "summary": "Update entity in devices", + "operationId": "devices.device.UpdateDevice", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.device" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "devices.device" + ], + "summary": "Delete entity from devices", + "operationId": "devices.device.DeleteDevice", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}/extensions": { + "get": { + "tags": [ + "devices.extension" + ], + "summary": "Get extensions from devices", + "operationId": "devices.ListExtensions", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "devices.extension" + ], + "summary": "Create new navigation property to extensions for devices", + "operationId": "devices.CreateExtensions", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "devices.extension" + ], + "summary": "Get extensions from devices", + "operationId": "devices.GetExtensions", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "devices.extension" + ], + "summary": "Update the navigation property extensions in devices", + "operationId": "devices.UpdateExtensions", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "devices.extension" + ], + "summary": "Delete navigation property extensions for devices", + "operationId": "devices.DeleteExtensions", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}/checkMemberGroups": { + "post": { + "tags": [ + "devices.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "devices.checkMemberGroups", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/devices/{device-id}/getMemberGroups": { + "post": { + "tags": [ + "devices.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "devices.getMemberGroups", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/devices/{device-id}/getMemberObjects": { + "post": { + "tags": [ + "devices.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "devices.getMemberObjects", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/devices/{device-id}/restore": { + "post": { + "tags": [ + "devices.Actions" + ], + "summary": "Invoke action restore", + "operationId": "devices.restore", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/devices/{device-id}/registeredOwners": { + "get": { + "tags": [ + "devices.directoryObject" + ], + "summary": "Get registeredOwners from devices", + "operationId": "devices.ListRegisteredOwners", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}/registeredOwners/$ref": { + "get": { + "tags": [ + "devices.directoryObject" + ], + "summary": "Get ref of registeredOwners from devices", + "operationId": "devices.ListRefRegisteredOwners", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "devices.directoryObject" + ], + "summary": "Create new navigation property ref to registeredOwners for devices", + "operationId": "devices.CreateRefRegisteredOwners", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}/registeredUsers": { + "get": { + "tags": [ + "devices.directoryObject" + ], + "summary": "Get registeredUsers from devices", + "operationId": "devices.ListRegisteredUsers", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/{device-id}/registeredUsers/$ref": { + "get": { + "tags": [ + "devices.directoryObject" + ], + "summary": "Get ref of registeredUsers from devices", + "operationId": "devices.ListRefRegisteredUsers", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "devices.directoryObject" + ], + "summary": "Create new navigation property ref to registeredUsers for devices", + "operationId": "devices.CreateRefRegisteredUsers", + "parameters": [ + { + "name": "device-id", + "in": "path", + "description": "key: id of device", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "device" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/devices/getByIds": { + "post": { + "tags": [ + "devices.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "devices.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directory": { + "get": { + "tags": [ + "directory.directory" + ], + "summary": "Get directory", + "operationId": "directory.directory.GetDirectory", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deletedItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "directory.directory" + ], + "summary": "Update directory", + "operationId": "directory.directory.UpdateDirectory", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directory/deletedItems": { + "get": { + "tags": [ + "directory.directoryObject" + ], + "summary": "Get deletedItems from directory", + "operationId": "directory.ListDeletedItems", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "directory.directoryObject" + ], + "summary": "Create new navigation property to deletedItems for directory", + "operationId": "directory.CreateDeletedItems", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directory/deletedItems/{directoryObject-id}": { + "get": { + "tags": [ + "directory.directoryObject" + ], + "summary": "Get deletedItems from directory", + "operationId": "directory.GetDeletedItems", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "directory.directoryObject" + ], + "summary": "Update the navigation property deletedItems in directory", + "operationId": "directory.UpdateDeletedItems", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "directory.directoryObject" + ], + "summary": "Delete navigation property deletedItems for directory", + "operationId": "directory.DeleteDeletedItems", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryObjects": { + "get": { + "tags": [ + "directoryObjects.directoryObject" + ], + "summary": "Get entities from directoryObjects", + "operationId": "directoryObjects.directoryObject.ListDirectoryObject", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "directoryObjects.directoryObject" + ], + "summary": "Add new entity to directoryObjects", + "operationId": "directoryObjects.directoryObject.CreateDirectoryObject", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryObjects/{directoryObject-id}": { + "get": { + "tags": [ + "directoryObjects.directoryObject" + ], + "summary": "Get entity from directoryObjects by key", + "operationId": "directoryObjects.directoryObject.GetDirectoryObject", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "directoryObjects.directoryObject" + ], + "summary": "Update entity in directoryObjects", + "operationId": "directoryObjects.directoryObject.UpdateDirectoryObject", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "directoryObjects.directoryObject" + ], + "summary": "Delete entity from directoryObjects", + "operationId": "directoryObjects.directoryObject.DeleteDirectoryObject", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryObjects/{directoryObject-id}/checkMemberGroups": { + "post": { + "tags": [ + "directoryObjects.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "directoryObjects.checkMemberGroups", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryObjects/{directoryObject-id}/getMemberGroups": { + "post": { + "tags": [ + "directoryObjects.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "directoryObjects.getMemberGroups", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryObjects/{directoryObject-id}/getMemberObjects": { + "post": { + "tags": [ + "directoryObjects.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "directoryObjects.getMemberObjects", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryObjects/{directoryObject-id}/restore": { + "post": { + "tags": [ + "directoryObjects.Actions" + ], + "summary": "Invoke action restore", + "operationId": "directoryObjects.restore", + "parameters": [ + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryObjects/getByIds": { + "post": { + "tags": [ + "directoryObjects.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "directoryObjects.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoles": { + "get": { + "tags": [ + "directoryRoles.directoryRole" + ], + "summary": "Get entities from directoryRoles", + "operationId": "directoryRoles.directoryRole.ListDirectoryRole", + "parameters": [ + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "description", + "description desc", + "displayName", + "displayName desc", + "roleTemplateId", + "roleTemplateId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "description", + "displayName", + "roleTemplateId", + "members" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryRole", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryRole" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "directoryRoles.directoryRole" + ], + "summary": "Add new entity to directoryRoles", + "operationId": "directoryRoles.directoryRole.CreateDirectoryRole", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRole" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRole" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryRoles/{directoryRole-id}": { + "get": { + "tags": [ + "directoryRoles.directoryRole" + ], + "summary": "Get entity from directoryRoles by key", + "operationId": "directoryRoles.directoryRole.GetDirectoryRole", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "description", + "displayName", + "roleTemplateId", + "members" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRole" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "directoryRoles.directoryRole" + ], + "summary": "Update entity in directoryRoles", + "operationId": "directoryRoles.directoryRole.UpdateDirectoryRole", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRole" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "directoryRoles.directoryRole" + ], + "summary": "Delete entity from directoryRoles", + "operationId": "directoryRoles.directoryRole.DeleteDirectoryRole", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryRoles/{directoryRole-id}/members": { + "get": { + "tags": [ + "directoryRoles.directoryObject" + ], + "summary": "Get members from directoryRoles", + "operationId": "directoryRoles.ListMembers", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryRoles/{directoryRole-id}/members/$ref": { + "get": { + "tags": [ + "directoryRoles.directoryObject" + ], + "summary": "Get ref of members from directoryRoles", + "operationId": "directoryRoles.ListRefMembers", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "directoryRoles.directoryObject" + ], + "summary": "Create new navigation property ref to members for directoryRoles", + "operationId": "directoryRoles.CreateRefMembers", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryRoles/{directoryRole-id}/checkMemberGroups": { + "post": { + "tags": [ + "directoryRoles.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "directoryRoles.checkMemberGroups", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoles/{directoryRole-id}/getMemberGroups": { + "post": { + "tags": [ + "directoryRoles.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "directoryRoles.getMemberGroups", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoles/{directoryRole-id}/getMemberObjects": { + "post": { + "tags": [ + "directoryRoles.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "directoryRoles.getMemberObjects", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoles/{directoryRole-id}/restore": { + "post": { + "tags": [ + "directoryRoles.Actions" + ], + "summary": "Invoke action restore", + "operationId": "directoryRoles.restore", + "parameters": [ + { + "name": "directoryRole-id", + "in": "path", + "description": "key: id of directoryRole", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRole" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoles/getByIds": { + "post": { + "tags": [ + "directoryRoles.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "directoryRoles.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoleTemplates": { + "get": { + "tags": [ + "directoryRoleTemplates.directoryRoleTemplate" + ], + "summary": "Get entities from directoryRoleTemplates", + "operationId": "directoryRoleTemplates.directoryRoleTemplate.ListDirectoryRoleTemplate", + "parameters": [ + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "description", + "description desc", + "displayName", + "displayName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "description", + "displayName" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryRoleTemplate", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryRoleTemplate" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "directoryRoleTemplates.directoryRoleTemplate" + ], + "summary": "Add new entity to directoryRoleTemplates", + "operationId": "directoryRoleTemplates.directoryRoleTemplate.CreateDirectoryRoleTemplate", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRoleTemplate" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRoleTemplate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryRoleTemplates/{directoryRoleTemplate-id}": { + "get": { + "tags": [ + "directoryRoleTemplates.directoryRoleTemplate" + ], + "summary": "Get entity from directoryRoleTemplates by key", + "operationId": "directoryRoleTemplates.directoryRoleTemplate.GetDirectoryRoleTemplate", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "description", + "displayName" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRoleTemplate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "directoryRoleTemplates.directoryRoleTemplate" + ], + "summary": "Update entity in directoryRoleTemplates", + "operationId": "directoryRoleTemplates.directoryRoleTemplate.UpdateDirectoryRoleTemplate", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryRoleTemplate" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "directoryRoleTemplates.directoryRoleTemplate" + ], + "summary": "Delete entity from directoryRoleTemplates", + "operationId": "directoryRoleTemplates.directoryRoleTemplate.DeleteDirectoryRoleTemplate", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups": { + "post": { + "tags": [ + "directoryRoleTemplates.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "directoryRoleTemplates.checkMemberGroups", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups": { + "post": { + "tags": [ + "directoryRoleTemplates.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "directoryRoleTemplates.getMemberGroups", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects": { + "post": { + "tags": [ + "directoryRoleTemplates.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "directoryRoleTemplates.getMemberObjects", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoleTemplates/{directoryRoleTemplate-id}/restore": { + "post": { + "tags": [ + "directoryRoleTemplates.Actions" + ], + "summary": "Invoke action restore", + "operationId": "directoryRoleTemplates.restore", + "parameters": [ + { + "name": "directoryRoleTemplate-id", + "in": "path", + "description": "key: id of directoryRoleTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryRoleTemplate" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/directoryRoleTemplates/getByIds": { + "post": { + "tags": [ + "directoryRoleTemplates.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "directoryRoleTemplates.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/domainDnsRecords": { + "get": { + "tags": [ + "domainDnsRecords.domainDnsRecord" + ], + "summary": "Get entities from domainDnsRecords", + "operationId": "domainDnsRecords.domainDnsRecord.ListDomainDnsRecord", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "isOptional", + "isOptional desc", + "label", + "label desc", + "recordType", + "recordType desc", + "supportedService", + "supportedService desc", + "ttl", + "ttl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "isOptional", + "label", + "recordType", + "supportedService", + "ttl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of domainDnsRecord", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "domainDnsRecords.domainDnsRecord" + ], + "summary": "Add new entity to domainDnsRecords", + "operationId": "domainDnsRecords.domainDnsRecord.CreateDomainDnsRecord", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domainDnsRecords/{domainDnsRecord-id}": { + "get": { + "tags": [ + "domainDnsRecords.domainDnsRecord" + ], + "summary": "Get entity from domainDnsRecords by key", + "operationId": "domainDnsRecords.domainDnsRecord.GetDomainDnsRecord", + "parameters": [ + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "isOptional", + "label", + "recordType", + "supportedService", + "ttl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "domainDnsRecords.domainDnsRecord" + ], + "summary": "Update entity in domainDnsRecords", + "operationId": "domainDnsRecords.domainDnsRecord.UpdateDomainDnsRecord", + "parameters": [ + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "domainDnsRecords.domainDnsRecord" + ], + "summary": "Delete entity from domainDnsRecords", + "operationId": "domainDnsRecords.domainDnsRecord.DeleteDomainDnsRecord", + "parameters": [ + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains": { + "get": { + "tags": [ + "domains.domain" + ], + "summary": "Get entities from domains", + "operationId": "domains.domain.ListDomain", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "authenticationType", + "authenticationType desc", + "availabilityStatus", + "availabilityStatus desc", + "isAdminManaged", + "isAdminManaged desc", + "isDefault", + "isDefault desc", + "isInitial", + "isInitial desc", + "isRoot", + "isRoot desc", + "isVerified", + "isVerified desc", + "supportedServices", + "supportedServices desc", + "state", + "state desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "authenticationType", + "availabilityStatus", + "isAdminManaged", + "isDefault", + "isInitial", + "isRoot", + "isVerified", + "supportedServices", + "state", + "serviceConfigurationRecords", + "verificationDnsRecords", + "domainNameReferences" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "serviceConfigurationRecords", + "verificationDnsRecords", + "domainNameReferences" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of domain", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.domain" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "domains.domain" + ], + "summary": "Add new entity to domains", + "operationId": "domains.domain.CreateDomain", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domain" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domain" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}": { + "get": { + "tags": [ + "domains.domain" + ], + "summary": "Get entity from domains by key", + "operationId": "domains.domain.GetDomain", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "authenticationType", + "availabilityStatus", + "isAdminManaged", + "isDefault", + "isInitial", + "isRoot", + "isVerified", + "supportedServices", + "state", + "serviceConfigurationRecords", + "verificationDnsRecords", + "domainNameReferences" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "serviceConfigurationRecords", + "verificationDnsRecords", + "domainNameReferences" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domain" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "domains.domain" + ], + "summary": "Update entity in domains", + "operationId": "domains.domain.UpdateDomain", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domain" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "domains.domain" + ], + "summary": "Delete entity from domains", + "operationId": "domains.domain.DeleteDomain", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}/domainNameReferences": { + "get": { + "tags": [ + "domains.directoryObject" + ], + "summary": "Get domainNameReferences from domains", + "operationId": "domains.ListDomainNameReferences", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}/domainNameReferences/$ref": { + "get": { + "tags": [ + "domains.directoryObject" + ], + "summary": "Get ref of domainNameReferences from domains", + "operationId": "domains.ListRefDomainNameReferences", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "domains.directoryObject" + ], + "summary": "Create new navigation property ref to domainNameReferences for domains", + "operationId": "domains.CreateRefDomainNameReferences", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}/verify": { + "post": { + "tags": [ + "domains.Actions" + ], + "summary": "Invoke action verify", + "operationId": "domains.verify", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domain" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/domains/{domain-id}/serviceConfigurationRecords": { + "get": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Get serviceConfigurationRecords from domains", + "operationId": "domains.ListServiceConfigurationRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "isOptional", + "isOptional desc", + "label", + "label desc", + "recordType", + "recordType desc", + "supportedService", + "supportedService desc", + "ttl", + "ttl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "isOptional", + "label", + "recordType", + "supportedService", + "ttl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of domainDnsRecord", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Create new navigation property to serviceConfigurationRecords for domains", + "operationId": "domains.CreateServiceConfigurationRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}": { + "get": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Get serviceConfigurationRecords from domains", + "operationId": "domains.GetServiceConfigurationRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "isOptional", + "label", + "recordType", + "supportedService", + "ttl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Update the navigation property serviceConfigurationRecords in domains", + "operationId": "domains.UpdateServiceConfigurationRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Delete navigation property serviceConfigurationRecords for domains", + "operationId": "domains.DeleteServiceConfigurationRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}/verificationDnsRecords": { + "get": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Get verificationDnsRecords from domains", + "operationId": "domains.ListVerificationDnsRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "isOptional", + "isOptional desc", + "label", + "label desc", + "recordType", + "recordType desc", + "supportedService", + "supportedService desc", + "ttl", + "ttl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "isOptional", + "label", + "recordType", + "supportedService", + "ttl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of domainDnsRecord", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Create new navigation property to verificationDnsRecords for domains", + "operationId": "domains.CreateVerificationDnsRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}": { + "get": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Get verificationDnsRecords from domains", + "operationId": "domains.GetVerificationDnsRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "isOptional", + "label", + "recordType", + "supportedService", + "ttl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Update the navigation property verificationDnsRecords in domains", + "operationId": "domains.UpdateVerificationDnsRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "domains.domainDnsRecord" + ], + "summary": "Delete navigation property verificationDnsRecords for domains", + "operationId": "domains.DeleteVerificationDnsRecords", + "parameters": [ + { + "name": "domain-id", + "in": "path", + "description": "key: id of domain", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domain" + }, + { + "name": "domainDnsRecord-id", + "in": "path", + "description": "key: id of domainDnsRecord", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "domainDnsRecord" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive": { + "get": { + "tags": [ + "drive.drive" + ], + "summary": "Get drive", + "operationId": "drive.drive.GetDrive", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.drive" + ], + "summary": "Update drive", + "operationId": "drive.drive.UpdateDrive", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/items": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get items from drive", + "operationId": "drive.ListItems", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.driveItem" + ], + "summary": "Create new navigation property to items for drive", + "operationId": "drive.CreateItems", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/items/{workbook-id}": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get items from drive", + "operationId": "drive.GetItems", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.driveItem" + ], + "summary": "Update the navigation property items in drive", + "operationId": "drive.UpdateItems", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.driveItem" + ], + "summary": "Delete navigation property items for drive", + "operationId": "drive.DeleteItems", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/items/{workbook-id}/content": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get media content for the navigation property items from drive", + "operationId": "drive.GetItemsContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drive.driveItem" + ], + "summary": "Update media content for the navigation property items in drive", + "operationId": "drive.UpdateItemsContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list": { + "get": { + "tags": [ + "drive.list" + ], + "summary": "Get list from drive", + "operationId": "drive.GetList", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "list", + "sharepointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list" + ], + "summary": "Update the navigation property list in drive", + "operationId": "drive.UpdateList", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list" + ], + "summary": "Delete navigation property list for drive", + "operationId": "drive.DeleteList", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/columns": { + "get": { + "tags": [ + "drive.list.columnDefinition" + ], + "summary": "Get columns from drive", + "operationId": "drive.list.ListColumns", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "boolean", + "boolean desc", + "calculated", + "calculated desc", + "choice", + "choice desc", + "columnGroup", + "columnGroup desc", + "currency", + "currency desc", + "dateTime", + "dateTime desc", + "defaultValue", + "defaultValue desc", + "description", + "description desc", + "displayName", + "displayName desc", + "enforceUniqueValues", + "enforceUniqueValues desc", + "hidden", + "hidden desc", + "indexed", + "indexed desc", + "lookup", + "lookup desc", + "name", + "name desc", + "number", + "number desc", + "personOrGroup", + "personOrGroup desc", + "readOnly", + "readOnly desc", + "required", + "required desc", + "text", + "text desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnDefinition", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.list.columnDefinition" + ], + "summary": "Create new navigation property to columns for drive", + "operationId": "drive.list.CreateColumns", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/columns/{columnDefinition-id}": { + "get": { + "tags": [ + "drive.list.columnDefinition" + ], + "summary": "Get columns from drive", + "operationId": "drive.list.GetColumns", + "parameters": [ + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.columnDefinition" + ], + "summary": "Update the navigation property columns in drive", + "operationId": "drive.list.UpdateColumns", + "parameters": [ + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.columnDefinition" + ], + "summary": "Delete navigation property columns for drive", + "operationId": "drive.list.DeleteColumns", + "parameters": [ + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/contentTypes": { + "get": { + "tags": [ + "drive.list.contentType" + ], + "summary": "Get contentTypes from drive", + "operationId": "drive.list.ListContentTypes", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "description", + "description desc", + "group", + "group desc", + "hidden", + "hidden desc", + "inheritedFrom", + "inheritedFrom desc", + "name", + "name desc", + "order", + "order desc", + "parentId", + "parentId desc", + "readOnly", + "readOnly desc", + "sealed", + "sealed desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contentType", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.list.contentType" + ], + "summary": "Create new navigation property to contentTypes for drive", + "operationId": "drive.list.CreateContentTypes", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/contentTypes/{contentType-id}": { + "get": { + "tags": [ + "drive.list.contentType" + ], + "summary": "Get contentTypes from drive", + "operationId": "drive.list.GetContentTypes", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.contentType" + ], + "summary": "Update the navigation property contentTypes in drive", + "operationId": "drive.list.UpdateContentTypes", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.contentType" + ], + "summary": "Delete navigation property contentTypes for drive", + "operationId": "drive.list.DeleteContentTypes", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/contentTypes/{contentType-id}/columnLinks": { + "get": { + "tags": [ + "drive.list.contentTypes.columnLink" + ], + "summary": "Get columnLinks from drive", + "operationId": "drive.list.contentTypes.ListColumnLinks", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnLink", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.list.contentTypes.columnLink" + ], + "summary": "Create new navigation property to columnLinks for drive", + "operationId": "drive.list.contentTypes.CreateColumnLinks", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": { + "get": { + "tags": [ + "drive.list.contentTypes.columnLink" + ], + "summary": "Get columnLinks from drive", + "operationId": "drive.list.contentTypes.GetColumnLinks", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.contentTypes.columnLink" + ], + "summary": "Update the navigation property columnLinks in drive", + "operationId": "drive.list.contentTypes.UpdateColumnLinks", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.contentTypes.columnLink" + ], + "summary": "Delete navigation property columnLinks for drive", + "operationId": "drive.list.contentTypes.DeleteColumnLinks", + "parameters": [ + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/drive": { + "get": { + "tags": [ + "drive.list.drive" + ], + "summary": "Get drive from drive", + "operationId": "drive.list.GetDrive", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.drive" + ], + "summary": "Update the navigation property drive in drive", + "operationId": "drive.list.UpdateDrive", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.drive" + ], + "summary": "Delete navigation property drive for drive", + "operationId": "drive.list.DeleteDrive", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items": { + "get": { + "tags": [ + "drive.list.listItem" + ], + "summary": "Get items from drive", + "operationId": "drive.list.ListItems", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "contentType", + "contentType desc", + "sharepointIds", + "sharepointIds desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.list.listItem" + ], + "summary": "Create new navigation property to items for drive", + "operationId": "drive.list.CreateItems", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}": { + "get": { + "tags": [ + "drive.list.listItem" + ], + "summary": "Get items from drive", + "operationId": "drive.list.GetItems", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.listItem" + ], + "summary": "Update the navigation property items in drive", + "operationId": "drive.list.UpdateItems", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.listItem" + ], + "summary": "Delete navigation property items for drive", + "operationId": "drive.list.DeleteItems", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/driveItem": { + "get": { + "tags": [ + "drive.list.items.driveItem" + ], + "summary": "Get driveItem from drive", + "operationId": "drive.list.items.GetDriveItem", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.items.driveItem" + ], + "summary": "Update the navigation property driveItem in drive", + "operationId": "drive.list.items.UpdateDriveItem", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.items.driveItem" + ], + "summary": "Delete navigation property driveItem for drive", + "operationId": "drive.list.items.DeleteDriveItem", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/driveItem/content": { + "get": { + "tags": [ + "drive.list.items.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from drive", + "operationId": "drive.list.items.GetDriveItemContent", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drive.list.items.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in drive", + "operationId": "drive.list.items.UpdateDriveItemContent", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/fields": { + "get": { + "tags": [ + "drive.list.items.fieldValueSet" + ], + "summary": "Get fields from drive", + "operationId": "drive.list.items.GetFields", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.items.fieldValueSet" + ], + "summary": "Update the navigation property fields in drive", + "operationId": "drive.list.items.UpdateFields", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.items.fieldValueSet" + ], + "summary": "Delete navigation property fields for drive", + "operationId": "drive.list.items.DeleteFields", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/versions": { + "get": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Get versions from drive", + "operationId": "drive.list.items.ListVersions", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Create new navigation property to versions for drive", + "operationId": "drive.list.items.CreateVersions", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/versions/{listItemVersion-id}": { + "get": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Get versions from drive", + "operationId": "drive.list.items.GetVersions", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Update the navigation property versions in drive", + "operationId": "drive.list.items.UpdateVersions", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Delete navigation property versions for drive", + "operationId": "drive.list.items.DeleteVersions", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": { + "get": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Get fields from drive", + "operationId": "drive.list.items.versions.GetFields", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Update the navigation property fields in drive", + "operationId": "drive.list.items.versions.UpdateFields", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.list.items.listItemVersion" + ], + "summary": "Delete navigation property fields for drive", + "operationId": "drive.list.items.versions.DeleteFields", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "drive.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "drive.list.items.versions.restoreVersion", + "parameters": [ + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/drive/recent()": { + "get": { + "tags": [ + "drive.Functions" + ], + "summary": "Invoke function recent", + "operationId": "drive.recent", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/drive/search(q={q})": { + "get": { + "tags": [ + "drive.Functions" + ], + "summary": "Invoke function search", + "operationId": "drive.search", + "parameters": [ + { + "name": "q", + "in": "path", + "description": "Usage: q={q}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/drive/sharedWithMe()": { + "get": { + "tags": [ + "drive.Functions" + ], + "summary": "Invoke function sharedWithMe", + "operationId": "drive.sharedWithMe", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/drive/root": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get root from drive", + "operationId": "drive.GetRoot", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.driveItem" + ], + "summary": "Update the navigation property root in drive", + "operationId": "drive.UpdateRoot", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.driveItem" + ], + "summary": "Delete navigation property root for drive", + "operationId": "drive.DeleteRoot", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/root/content": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get media content for the navigation property root from drive", + "operationId": "drive.GetRootContent", + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drive.driveItem" + ], + "summary": "Update media content for the navigation property root in drive", + "operationId": "drive.UpdateRootContent", + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/special": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get special from drive", + "operationId": "drive.ListSpecial", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drive.driveItem" + ], + "summary": "Create new navigation property to special for drive", + "operationId": "drive.CreateSpecial", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/special/{workbook-id}": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get special from drive", + "operationId": "drive.GetSpecial", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drive.driveItem" + ], + "summary": "Update the navigation property special in drive", + "operationId": "drive.UpdateSpecial", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drive.driveItem" + ], + "summary": "Delete navigation property special for drive", + "operationId": "drive.DeleteSpecial", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drive/special/{workbook-id}/content": { + "get": { + "tags": [ + "drive.driveItem" + ], + "summary": "Get media content for the navigation property special from drive", + "operationId": "drive.GetSpecialContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drive.driveItem" + ], + "summary": "Update media content for the navigation property special in drive", + "operationId": "drive.UpdateSpecialContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives": { + "get": { + "tags": [ + "drives.drive" + ], + "summary": "Get entities from drives", + "operationId": "drives.drive.ListDrive", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "driveType", + "driveType desc", + "owner", + "owner desc", + "quota", + "quota desc", + "sharePointIds", + "sharePointIds desc", + "system", + "system desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of drive", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "drives.drive" + ], + "summary": "Add new entity to drives", + "operationId": "drives.drive.CreateDrive", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}": { + "get": { + "tags": [ + "drives.drive" + ], + "summary": "Get entity from drives by key", + "operationId": "drives.drive.GetDrive", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.drive" + ], + "summary": "Update entity in drives", + "operationId": "drives.drive.UpdateDrive", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.drive" + ], + "summary": "Delete entity from drives", + "operationId": "drives.drive.DeleteDrive", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/items": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get items from drives", + "operationId": "drives.ListItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.driveItem" + ], + "summary": "Create new navigation property to items for drives", + "operationId": "drives.CreateItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/items/{workbook-id}": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get items from drives", + "operationId": "drives.GetItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.driveItem" + ], + "summary": "Update the navigation property items in drives", + "operationId": "drives.UpdateItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.driveItem" + ], + "summary": "Delete navigation property items for drives", + "operationId": "drives.DeleteItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/items/{workbook-id}/content": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get media content for the navigation property items from drives", + "operationId": "drives.GetItemsContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drives.driveItem" + ], + "summary": "Update media content for the navigation property items in drives", + "operationId": "drives.UpdateItemsContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list": { + "get": { + "tags": [ + "drives.list" + ], + "summary": "Get list from drives", + "operationId": "drives.GetList", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "list", + "sharepointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list" + ], + "summary": "Update the navigation property list in drives", + "operationId": "drives.UpdateList", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list" + ], + "summary": "Delete navigation property list for drives", + "operationId": "drives.DeleteList", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/columns": { + "get": { + "tags": [ + "drives.list.columnDefinition" + ], + "summary": "Get columns from drives", + "operationId": "drives.list.ListColumns", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "boolean", + "boolean desc", + "calculated", + "calculated desc", + "choice", + "choice desc", + "columnGroup", + "columnGroup desc", + "currency", + "currency desc", + "dateTime", + "dateTime desc", + "defaultValue", + "defaultValue desc", + "description", + "description desc", + "displayName", + "displayName desc", + "enforceUniqueValues", + "enforceUniqueValues desc", + "hidden", + "hidden desc", + "indexed", + "indexed desc", + "lookup", + "lookup desc", + "name", + "name desc", + "number", + "number desc", + "personOrGroup", + "personOrGroup desc", + "readOnly", + "readOnly desc", + "required", + "required desc", + "text", + "text desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnDefinition", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.list.columnDefinition" + ], + "summary": "Create new navigation property to columns for drives", + "operationId": "drives.list.CreateColumns", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/columns/{columnDefinition-id}": { + "get": { + "tags": [ + "drives.list.columnDefinition" + ], + "summary": "Get columns from drives", + "operationId": "drives.list.GetColumns", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.columnDefinition" + ], + "summary": "Update the navigation property columns in drives", + "operationId": "drives.list.UpdateColumns", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.columnDefinition" + ], + "summary": "Delete navigation property columns for drives", + "operationId": "drives.list.DeleteColumns", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/contentTypes": { + "get": { + "tags": [ + "drives.list.contentType" + ], + "summary": "Get contentTypes from drives", + "operationId": "drives.list.ListContentTypes", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "description", + "description desc", + "group", + "group desc", + "hidden", + "hidden desc", + "inheritedFrom", + "inheritedFrom desc", + "name", + "name desc", + "order", + "order desc", + "parentId", + "parentId desc", + "readOnly", + "readOnly desc", + "sealed", + "sealed desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contentType", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.list.contentType" + ], + "summary": "Create new navigation property to contentTypes for drives", + "operationId": "drives.list.CreateContentTypes", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/contentTypes/{contentType-id}": { + "get": { + "tags": [ + "drives.list.contentType" + ], + "summary": "Get contentTypes from drives", + "operationId": "drives.list.GetContentTypes", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.contentType" + ], + "summary": "Update the navigation property contentTypes in drives", + "operationId": "drives.list.UpdateContentTypes", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.contentType" + ], + "summary": "Delete navigation property contentTypes for drives", + "operationId": "drives.list.DeleteContentTypes", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks": { + "get": { + "tags": [ + "drives.list.contentTypes.columnLink" + ], + "summary": "Get columnLinks from drives", + "operationId": "drives.list.contentTypes.ListColumnLinks", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnLink", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.list.contentTypes.columnLink" + ], + "summary": "Create new navigation property to columnLinks for drives", + "operationId": "drives.list.contentTypes.CreateColumnLinks", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": { + "get": { + "tags": [ + "drives.list.contentTypes.columnLink" + ], + "summary": "Get columnLinks from drives", + "operationId": "drives.list.contentTypes.GetColumnLinks", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.contentTypes.columnLink" + ], + "summary": "Update the navigation property columnLinks in drives", + "operationId": "drives.list.contentTypes.UpdateColumnLinks", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.contentTypes.columnLink" + ], + "summary": "Delete navigation property columnLinks for drives", + "operationId": "drives.list.contentTypes.DeleteColumnLinks", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/drive": { + "get": { + "tags": [ + "drives.list.drive" + ], + "summary": "Get drive from drives", + "operationId": "drives.list.GetDrive", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.drive" + ], + "summary": "Update the navigation property drive in drives", + "operationId": "drives.list.UpdateDrive", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.drive" + ], + "summary": "Delete navigation property drive for drives", + "operationId": "drives.list.DeleteDrive", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items": { + "get": { + "tags": [ + "drives.list.listItem" + ], + "summary": "Get items from drives", + "operationId": "drives.list.ListItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "contentType", + "contentType desc", + "sharepointIds", + "sharepointIds desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.list.listItem" + ], + "summary": "Create new navigation property to items for drives", + "operationId": "drives.list.CreateItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}": { + "get": { + "tags": [ + "drives.list.listItem" + ], + "summary": "Get items from drives", + "operationId": "drives.list.GetItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.listItem" + ], + "summary": "Update the navigation property items in drives", + "operationId": "drives.list.UpdateItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.listItem" + ], + "summary": "Delete navigation property items for drives", + "operationId": "drives.list.DeleteItems", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/driveItem": { + "get": { + "tags": [ + "drives.list.items.driveItem" + ], + "summary": "Get driveItem from drives", + "operationId": "drives.list.items.GetDriveItem", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.items.driveItem" + ], + "summary": "Update the navigation property driveItem in drives", + "operationId": "drives.list.items.UpdateDriveItem", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.items.driveItem" + ], + "summary": "Delete navigation property driveItem for drives", + "operationId": "drives.list.items.DeleteDriveItem", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content": { + "get": { + "tags": [ + "drives.list.items.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from drives", + "operationId": "drives.list.items.GetDriveItemContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drives.list.items.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in drives", + "operationId": "drives.list.items.UpdateDriveItemContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/fields": { + "get": { + "tags": [ + "drives.list.items.fieldValueSet" + ], + "summary": "Get fields from drives", + "operationId": "drives.list.items.GetFields", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.items.fieldValueSet" + ], + "summary": "Update the navigation property fields in drives", + "operationId": "drives.list.items.UpdateFields", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.items.fieldValueSet" + ], + "summary": "Delete navigation property fields for drives", + "operationId": "drives.list.items.DeleteFields", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/versions": { + "get": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Get versions from drives", + "operationId": "drives.list.items.ListVersions", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Create new navigation property to versions for drives", + "operationId": "drives.list.items.CreateVersions", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}": { + "get": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Get versions from drives", + "operationId": "drives.list.items.GetVersions", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Update the navigation property versions in drives", + "operationId": "drives.list.items.UpdateVersions", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Delete navigation property versions for drives", + "operationId": "drives.list.items.DeleteVersions", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": { + "get": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Get fields from drives", + "operationId": "drives.list.items.versions.GetFields", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Update the navigation property fields in drives", + "operationId": "drives.list.items.versions.UpdateFields", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.list.items.listItemVersion" + ], + "summary": "Delete navigation property fields for drives", + "operationId": "drives.list.items.versions.DeleteFields", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "drives.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "drives.list.items.versions.restoreVersion", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/drives/{drive-id}/recent()": { + "get": { + "tags": [ + "drives.Functions" + ], + "summary": "Invoke function recent", + "operationId": "drives.recent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/drives/{drive-id}/search(q={q})": { + "get": { + "tags": [ + "drives.Functions" + ], + "summary": "Invoke function search", + "operationId": "drives.search", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "q", + "in": "path", + "description": "Usage: q={q}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/drives/{drive-id}/sharedWithMe()": { + "get": { + "tags": [ + "drives.Functions" + ], + "summary": "Invoke function sharedWithMe", + "operationId": "drives.sharedWithMe", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/drives/{drive-id}/root": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get root from drives", + "operationId": "drives.GetRoot", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.driveItem" + ], + "summary": "Update the navigation property root in drives", + "operationId": "drives.UpdateRoot", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.driveItem" + ], + "summary": "Delete navigation property root for drives", + "operationId": "drives.DeleteRoot", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/root/content": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get media content for the navigation property root from drives", + "operationId": "drives.GetRootContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drives.driveItem" + ], + "summary": "Update media content for the navigation property root in drives", + "operationId": "drives.UpdateRootContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/special": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get special from drives", + "operationId": "drives.ListSpecial", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "drives.driveItem" + ], + "summary": "Create new navigation property to special for drives", + "operationId": "drives.CreateSpecial", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/special/{workbook-id}": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get special from drives", + "operationId": "drives.GetSpecial", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "drives.driveItem" + ], + "summary": "Update the navigation property special in drives", + "operationId": "drives.UpdateSpecial", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "drives.driveItem" + ], + "summary": "Delete navigation property special for drives", + "operationId": "drives.DeleteSpecial", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/drives/{drive-id}/special/{workbook-id}/content": { + "get": { + "tags": [ + "drives.driveItem" + ], + "summary": "Get media content for the navigation property special from drives", + "operationId": "drives.GetSpecialContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "drives.driveItem" + ], + "summary": "Update media content for the navigation property special in drives", + "operationId": "drives.UpdateSpecialContent", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education": { + "get": { + "tags": [ + "education.educationRoot" + ], + "summary": "Get education", + "operationId": "education.educationRoot.GetEducationRoot", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "classes", + "schools", + "users", + "me" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "classes", + "schools", + "users", + "me" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationRoot" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "education.educationRoot" + ], + "summary": "Update education", + "operationId": "education.educationRoot.UpdateEducationRoot", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationRoot" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes": { + "get": { + "tags": [ + "education.educationClass" + ], + "summary": "Get classes from education", + "operationId": "education.ListClasses", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "mailNickname", + "description", + "createdBy", + "classCode", + "externalName", + "externalId", + "externalSource", + "term", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.educationClass" + ], + "summary": "Create new navigation property to classes for education", + "operationId": "education.CreateClasses", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}": { + "get": { + "tags": [ + "education.educationClass" + ], + "summary": "Get classes from education", + "operationId": "education.GetClasses", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "mailNickname", + "description", + "createdBy", + "classCode", + "externalName", + "externalId", + "externalSource", + "term", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "education.educationClass" + ], + "summary": "Update the navigation property classes in education", + "operationId": "education.UpdateClasses", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.educationClass" + ], + "summary": "Delete navigation property classes for education", + "operationId": "education.DeleteClasses", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/group": { + "get": { + "tags": [ + "education.classes.group" + ], + "summary": "Get group from education", + "operationId": "education.classes.GetGroup", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "classification", + "createdDateTime", + "description", + "displayName", + "groupTypes", + "mail", + "mailEnabled", + "mailNickname", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "proxyAddresses", + "renewedDateTime", + "securityEnabled", + "visibility", + "allowExternalSenders", + "autoSubscribeNewMembers", + "isSubscribedByMail", + "unseenCount", + "members", + "memberOf", + "createdOnBehalfOf", + "owners", + "settings", + "extensions", + "threads", + "calendar", + "calendarView", + "events", + "conversations", + "photo", + "photos", + "acceptedSenders", + "rejectedSenders", + "drive", + "drives", + "sites", + "planner", + "onenote", + "groupLifecyclePolicies" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "members", + "memberOf", + "createdOnBehalfOf", + "owners", + "settings", + "extensions", + "threads", + "calendar", + "calendarView", + "events", + "conversations", + "photo", + "photos", + "acceptedSenders", + "rejectedSenders", + "drive", + "drives", + "sites", + "planner", + "onenote", + "groupLifecyclePolicies" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.group" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/group/$ref": { + "get": { + "tags": [ + "education.classes.group" + ], + "summary": "Get ref of group from education", + "operationId": "education.classes.GetRefGroup", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "education.classes.group" + ], + "summary": "Update the ref of navigation property group in education", + "operationId": "education.classes.UpdateRefGroup", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.classes.group" + ], + "summary": "Delete ref of navigation property group for education", + "operationId": "education.classes.DeleteRefGroup", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/members": { + "get": { + "tags": [ + "education.classes.educationUser" + ], + "summary": "Get members from education", + "operationId": "education.classes.ListMembers", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "primaryRole", + "middleName", + "externalSource", + "residenceAddress", + "mailingAddress", + "student", + "teacher", + "createdBy", + "relatedContacts", + "accountEnabled", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "department", + "displayName", + "givenName", + "mail", + "mailNickname", + "mobilePhone", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "preferredLanguage", + "provisionedPlans", + "refreshTokensValidFromDateTime", + "showInAddressList", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/members/$ref": { + "get": { + "tags": [ + "education.classes.educationUser" + ], + "summary": "Get ref of members from education", + "operationId": "education.classes.ListRefMembers", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.classes.educationUser" + ], + "summary": "Create new navigation property ref to members for education", + "operationId": "education.classes.CreateRefMembers", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/schools": { + "get": { + "tags": [ + "education.classes.educationSchool" + ], + "summary": "Get schools from education", + "operationId": "education.classes.ListSchools", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "externalSource", + "principalEmail", + "principalName", + "externalPrincipalId", + "lowestGrade", + "highestGrade", + "schoolNumber", + "externalId", + "phone", + "fax", + "createdBy", + "address", + "classes", + "users" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "classes", + "users" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/schools/$ref": { + "get": { + "tags": [ + "education.classes.educationSchool" + ], + "summary": "Get ref of schools from education", + "operationId": "education.classes.ListRefSchools", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.classes.educationSchool" + ], + "summary": "Create new navigation property ref to schools for education", + "operationId": "education.classes.CreateRefSchools", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/teachers": { + "get": { + "tags": [ + "education.classes.educationUser" + ], + "summary": "Get teachers from education", + "operationId": "education.classes.ListTeachers", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "primaryRole", + "middleName", + "externalSource", + "residenceAddress", + "mailingAddress", + "student", + "teacher", + "createdBy", + "relatedContacts", + "accountEnabled", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "department", + "displayName", + "givenName", + "mail", + "mailNickname", + "mobilePhone", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "preferredLanguage", + "provisionedPlans", + "refreshTokensValidFromDateTime", + "showInAddressList", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/classes/{educationClass-id}/teachers/$ref": { + "get": { + "tags": [ + "education.classes.educationUser" + ], + "summary": "Get ref of teachers from education", + "operationId": "education.classes.ListRefTeachers", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.classes.educationUser" + ], + "summary": "Create new navigation property ref to teachers for education", + "operationId": "education.classes.CreateRefTeachers", + "parameters": [ + { + "name": "educationClass-id", + "in": "path", + "description": "key: id of educationClass", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationClass" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/me": { + "get": { + "tags": [ + "education.educationUser" + ], + "summary": "Get me from education", + "operationId": "education.GetMe", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "primaryRole", + "middleName", + "externalSource", + "residenceAddress", + "mailingAddress", + "student", + "teacher", + "createdBy", + "relatedContacts", + "accountEnabled", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "department", + "displayName", + "givenName", + "mail", + "mailNickname", + "mobilePhone", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "preferredLanguage", + "provisionedPlans", + "refreshTokensValidFromDateTime", + "showInAddressList", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "education.educationUser" + ], + "summary": "Update the navigation property me in education", + "operationId": "education.UpdateMe", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.educationUser" + ], + "summary": "Delete navigation property me for education", + "operationId": "education.DeleteMe", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/me/classes": { + "get": { + "tags": [ + "education.me.educationClass" + ], + "summary": "Get classes from education", + "operationId": "education.me.ListClasses", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "mailNickname", + "description", + "createdBy", + "classCode", + "externalName", + "externalId", + "externalSource", + "term", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/education/users/{educationUser-id}/classes" + ] + }, + "/education/me/classes/$ref": { + "get": { + "tags": [ + "education.me.educationClass" + ], + "summary": "Get ref of classes from education", + "operationId": "education.me.ListRefClasses", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.me.educationClass" + ], + "summary": "Create new navigation property ref to classes for education", + "operationId": "education.me.CreateRefClasses", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/me/schools": { + "get": { + "tags": [ + "education.me.educationSchool" + ], + "summary": "Get schools from education", + "operationId": "education.me.ListSchools", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "externalSource", + "principalEmail", + "principalName", + "externalPrincipalId", + "lowestGrade", + "highestGrade", + "schoolNumber", + "externalId", + "phone", + "fax", + "createdBy", + "address", + "classes", + "users" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "classes", + "users" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/education/users/{educationUser-id}/schools" + ] + }, + "/education/me/schools/$ref": { + "get": { + "tags": [ + "education.me.educationSchool" + ], + "summary": "Get ref of schools from education", + "operationId": "education.me.ListRefSchools", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.me.educationSchool" + ], + "summary": "Create new navigation property ref to schools for education", + "operationId": "education.me.CreateRefSchools", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/me/user": { + "get": { + "tags": [ + "education.me.user" + ], + "summary": "Get user from education", + "operationId": "education.me.GetUser", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "ageGroup", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "city", + "companyName", + "consentProvidedForMinor", + "country", + "department", + "displayName", + "givenName", + "imAddresses", + "jobTitle", + "legalAgeGroupClassification", + "mail", + "mailNickname", + "mobilePhone", + "onPremisesExtensionAttributes", + "onPremisesImmutableId", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "onPremisesDomainName", + "onPremisesSamAccountName", + "onPremisesUserPrincipalName", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "postalCode", + "preferredLanguage", + "provisionedPlans", + "proxyAddresses", + "state", + "streetAddress", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "mailboxSettings", + "aboutMe", + "birthday", + "hireDate", + "interests", + "mySite", + "pastProjects", + "preferredName", + "responsibilities", + "schools", + "skills", + "deviceEnrollmentLimit", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/education/users/{educationUser-id}/user" + ] + }, + "/education/me/user/$ref": { + "get": { + "tags": [ + "education.me.user" + ], + "summary": "Get ref of user from education", + "operationId": "education.me.GetRefUser", + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "education.me.user" + ], + "summary": "Update the ref of navigation property user in education", + "operationId": "education.me.UpdateRefUser", + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.me.user" + ], + "summary": "Delete ref of navigation property user for education", + "operationId": "education.me.DeleteRefUser", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/schools": { + "get": { + "tags": [ + "education.educationSchool" + ], + "summary": "Get schools from education", + "operationId": "education.ListSchools", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "externalSource", + "principalEmail", + "principalName", + "externalPrincipalId", + "lowestGrade", + "highestGrade", + "schoolNumber", + "externalId", + "phone", + "fax", + "createdBy", + "address", + "classes", + "users" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "classes", + "users" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.educationSchool" + ], + "summary": "Create new navigation property to schools for education", + "operationId": "education.CreateSchools", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/schools/{educationSchool-id}": { + "get": { + "tags": [ + "education.educationSchool" + ], + "summary": "Get schools from education", + "operationId": "education.GetSchools", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "externalSource", + "principalEmail", + "principalName", + "externalPrincipalId", + "lowestGrade", + "highestGrade", + "schoolNumber", + "externalId", + "phone", + "fax", + "createdBy", + "address", + "classes", + "users" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "classes", + "users" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "education.educationSchool" + ], + "summary": "Update the navigation property schools in education", + "operationId": "education.UpdateSchools", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.educationSchool" + ], + "summary": "Delete navigation property schools for education", + "operationId": "education.DeleteSchools", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/schools/{educationSchool-id}/classes": { + "get": { + "tags": [ + "education.schools.educationClass" + ], + "summary": "Get classes from education", + "operationId": "education.schools.ListClasses", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "mailNickname", + "description", + "createdBy", + "classCode", + "externalName", + "externalId", + "externalSource", + "term", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/schools/{educationSchool-id}/classes/$ref": { + "get": { + "tags": [ + "education.schools.educationClass" + ], + "summary": "Get ref of classes from education", + "operationId": "education.schools.ListRefClasses", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.schools.educationClass" + ], + "summary": "Create new navigation property ref to classes for education", + "operationId": "education.schools.CreateRefClasses", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/schools/{educationSchool-id}/users": { + "get": { + "tags": [ + "education.schools.educationUser" + ], + "summary": "Get users from education", + "operationId": "education.schools.ListUsers", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "primaryRole", + "middleName", + "externalSource", + "residenceAddress", + "mailingAddress", + "student", + "teacher", + "createdBy", + "relatedContacts", + "accountEnabled", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "department", + "displayName", + "givenName", + "mail", + "mailNickname", + "mobilePhone", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "preferredLanguage", + "provisionedPlans", + "refreshTokensValidFromDateTime", + "showInAddressList", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/schools/{educationSchool-id}/users/$ref": { + "get": { + "tags": [ + "education.schools.educationUser" + ], + "summary": "Get ref of users from education", + "operationId": "education.schools.ListRefUsers", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.schools.educationUser" + ], + "summary": "Create new navigation property ref to users for education", + "operationId": "education.schools.CreateRefUsers", + "parameters": [ + { + "name": "educationSchool-id", + "in": "path", + "description": "key: id of educationSchool", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationSchool" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/users": { + "get": { + "tags": [ + "education.educationUser" + ], + "summary": "Get users from education", + "operationId": "education.ListUsers", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "primaryRole", + "primaryRole desc", + "middleName", + "middleName desc", + "externalSource", + "externalSource desc", + "residenceAddress", + "residenceAddress desc", + "mailingAddress", + "mailingAddress desc", + "student", + "student desc", + "teacher", + "teacher desc", + "createdBy", + "createdBy desc", + "relatedContacts", + "relatedContacts desc", + "accountEnabled", + "accountEnabled desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "refreshTokensValidFromDateTime", + "refreshTokensValidFromDateTime desc", + "showInAddressList", + "showInAddressList desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "primaryRole", + "middleName", + "externalSource", + "residenceAddress", + "mailingAddress", + "student", + "teacher", + "createdBy", + "relatedContacts", + "accountEnabled", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "department", + "displayName", + "givenName", + "mail", + "mailNickname", + "mobilePhone", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "preferredLanguage", + "provisionedPlans", + "refreshTokensValidFromDateTime", + "showInAddressList", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationUser", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.educationUser" + ], + "summary": "Create new navigation property to users for education", + "operationId": "education.CreateUsers", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/users/{educationUser-id}": { + "get": { + "tags": [ + "education.educationUser" + ], + "summary": "Get users from education", + "operationId": "education.GetUsers", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "primaryRole", + "middleName", + "externalSource", + "residenceAddress", + "mailingAddress", + "student", + "teacher", + "createdBy", + "relatedContacts", + "accountEnabled", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "department", + "displayName", + "givenName", + "mail", + "mailNickname", + "mobilePhone", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "preferredLanguage", + "provisionedPlans", + "refreshTokensValidFromDateTime", + "showInAddressList", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "classes", + "user" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "education.educationUser" + ], + "summary": "Update the navigation property users in education", + "operationId": "education.UpdateUsers", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.educationUser" + ], + "summary": "Delete navigation property users for education", + "operationId": "education.DeleteUsers", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/users/{educationUser-id}/classes": { + "get": { + "tags": [ + "education.users.educationClass" + ], + "summary": "Get classes from education", + "operationId": "education.users.ListClasses", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "mailNickname", + "description", + "createdBy", + "classCode", + "externalName", + "externalId", + "externalSource", + "term", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "schools", + "members", + "teachers", + "group" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/education/me/classes" + ] + }, + "/education/users/{educationUser-id}/classes/$ref": { + "get": { + "tags": [ + "education.users.educationClass" + ], + "summary": "Get ref of classes from education", + "operationId": "education.users.ListRefClasses", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "mailNickname", + "mailNickname desc", + "description", + "description desc", + "createdBy", + "createdBy desc", + "classCode", + "classCode desc", + "externalName", + "externalName desc", + "externalId", + "externalId desc", + "externalSource", + "externalSource desc", + "term", + "term desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationClass", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.users.educationClass" + ], + "summary": "Create new navigation property ref to classes for education", + "operationId": "education.users.CreateRefClasses", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/users/{educationUser-id}/schools": { + "get": { + "tags": [ + "education.users.educationSchool" + ], + "summary": "Get schools from education", + "operationId": "education.users.ListSchools", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description", + "externalSource", + "principalEmail", + "principalName", + "externalPrincipalId", + "lowestGrade", + "highestGrade", + "schoolNumber", + "externalId", + "phone", + "fax", + "createdBy", + "address", + "classes", + "users" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "classes", + "users" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/education/me/schools" + ] + }, + "/education/users/{educationUser-id}/schools/$ref": { + "get": { + "tags": [ + "education.users.educationSchool" + ], + "summary": "Get ref of schools from education", + "operationId": "education.users.ListRefSchools", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "description", + "description desc", + "externalSource", + "externalSource desc", + "principalEmail", + "principalEmail desc", + "principalName", + "principalName desc", + "externalPrincipalId", + "externalPrincipalId desc", + "lowestGrade", + "lowestGrade desc", + "highestGrade", + "highestGrade desc", + "schoolNumber", + "schoolNumber desc", + "externalId", + "externalId desc", + "phone", + "phone desc", + "fax", + "fax desc", + "createdBy", + "createdBy desc", + "address", + "address desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of educationSchool", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "education.users.educationSchool" + ], + "summary": "Create new navigation property ref to schools for education", + "operationId": "education.users.CreateRefSchools", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/education/users/{educationUser-id}/user": { + "get": { + "tags": [ + "education.users.user" + ], + "summary": "Get user from education", + "operationId": "education.users.GetUser", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "ageGroup", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "city", + "companyName", + "consentProvidedForMinor", + "country", + "department", + "displayName", + "givenName", + "imAddresses", + "jobTitle", + "legalAgeGroupClassification", + "mail", + "mailNickname", + "mobilePhone", + "onPremisesExtensionAttributes", + "onPremisesImmutableId", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "onPremisesDomainName", + "onPremisesSamAccountName", + "onPremisesUserPrincipalName", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "postalCode", + "preferredLanguage", + "provisionedPlans", + "proxyAddresses", + "state", + "streetAddress", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "mailboxSettings", + "aboutMe", + "birthday", + "hireDate", + "interests", + "mySite", + "pastProjects", + "preferredName", + "responsibilities", + "schools", + "skills", + "deviceEnrollmentLimit", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/education/me/user" + ] + }, + "/education/users/{educationUser-id}/user/$ref": { + "get": { + "tags": [ + "education.users.user" + ], + "summary": "Get ref of user from education", + "operationId": "education.users.GetRefUser", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "education.users.user" + ], + "summary": "Update the ref of navigation property user in education", + "operationId": "education.users.UpdateRefUser", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "education.users.user" + ], + "summary": "Delete ref of navigation property user for education", + "operationId": "education.users.DeleteRefUser", + "parameters": [ + { + "name": "educationUser-id", + "in": "path", + "description": "key: id of educationUser", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "educationUser" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupLifecyclePolicies": { + "get": { + "tags": [ + "groupLifecyclePolicies.groupLifecyclePolicy" + ], + "summary": "Get entities from groupLifecyclePolicies", + "operationId": "groupLifecyclePolicies.groupLifecyclePolicy.ListGroupLifecyclePolicy", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "groupLifetimeInDays", + "groupLifetimeInDays desc", + "managedGroupTypes", + "managedGroupTypes desc", + "alternateNotificationEmails", + "alternateNotificationEmails desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "groupLifetimeInDays", + "managedGroupTypes", + "alternateNotificationEmails" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of groupLifecyclePolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "groupLifecyclePolicies.groupLifecyclePolicy" + ], + "summary": "Add new entity to groupLifecyclePolicies", + "operationId": "groupLifecyclePolicies.groupLifecyclePolicy.CreateGroupLifecyclePolicy", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupLifecyclePolicies/{groupLifecyclePolicy-id}": { + "get": { + "tags": [ + "groupLifecyclePolicies.groupLifecyclePolicy" + ], + "summary": "Get entity from groupLifecyclePolicies by key", + "operationId": "groupLifecyclePolicies.groupLifecyclePolicy.GetGroupLifecyclePolicy", + "parameters": [ + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "groupLifetimeInDays", + "managedGroupTypes", + "alternateNotificationEmails" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groupLifecyclePolicies.groupLifecyclePolicy" + ], + "summary": "Update entity in groupLifecyclePolicies", + "operationId": "groupLifecyclePolicies.groupLifecyclePolicy.UpdateGroupLifecyclePolicy", + "parameters": [ + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groupLifecyclePolicies.groupLifecyclePolicy" + ], + "summary": "Delete entity from groupLifecyclePolicies", + "operationId": "groupLifecyclePolicies.groupLifecyclePolicy.DeleteGroupLifecyclePolicy", + "parameters": [ + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup": { + "post": { + "tags": [ + "groupLifecyclePolicies.Actions" + ], + "summary": "Invoke action addGroup", + "operationId": "groupLifecyclePolicies.addGroup", + "parameters": [ + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "boolean", + "default": false + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup": { + "post": { + "tags": [ + "groupLifecyclePolicies.Actions" + ], + "summary": "Invoke action removeGroup", + "operationId": "groupLifecyclePolicies.removeGroup", + "parameters": [ + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "boolean", + "default": false + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups": { + "get": { + "tags": [ + "groups.group" + ], + "summary": "Get entities from groups", + "operationId": "groups.group.ListGroup", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "classification", + "classification desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "displayName", + "displayName desc", + "groupTypes", + "groupTypes desc", + "mail", + "mail desc", + "mailEnabled", + "mailEnabled desc", + "mailNickname", + "mailNickname desc", + "onPremisesLastSyncDateTime", + "onPremisesLastSyncDateTime desc", + "onPremisesProvisioningErrors", + "onPremisesProvisioningErrors desc", + "onPremisesSecurityIdentifier", + "onPremisesSecurityIdentifier desc", + "onPremisesSyncEnabled", + "onPremisesSyncEnabled desc", + "proxyAddresses", + "proxyAddresses desc", + "renewedDateTime", + "renewedDateTime desc", + "securityEnabled", + "securityEnabled desc", + "visibility", + "visibility desc", + "allowExternalSenders", + "allowExternalSenders desc", + "autoSubscribeNewMembers", + "autoSubscribeNewMembers desc", + "isSubscribedByMail", + "isSubscribedByMail desc", + "unseenCount", + "unseenCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "classification", + "createdDateTime", + "description", + "displayName", + "groupTypes", + "mail", + "mailEnabled", + "mailNickname", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "proxyAddresses", + "renewedDateTime", + "securityEnabled", + "visibility", + "allowExternalSenders", + "autoSubscribeNewMembers", + "isSubscribedByMail", + "unseenCount", + "members", + "memberOf", + "createdOnBehalfOf", + "owners", + "settings", + "extensions", + "threads", + "calendar", + "calendarView", + "events", + "conversations", + "photo", + "photos", + "acceptedSenders", + "rejectedSenders", + "drive", + "drives", + "sites", + "planner", + "onenote", + "groupLifecyclePolicies" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of group", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.group" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "groups.group" + ], + "summary": "Add new entity to groups", + "operationId": "groups.group.CreateGroup", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.group" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.group" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}": { + "get": { + "tags": [ + "groups.group" + ], + "summary": "Get entity from groups by key", + "operationId": "groups.group.GetGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "classification", + "createdDateTime", + "description", + "displayName", + "groupTypes", + "mail", + "mailEnabled", + "mailNickname", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "proxyAddresses", + "renewedDateTime", + "securityEnabled", + "visibility", + "allowExternalSenders", + "autoSubscribeNewMembers", + "isSubscribedByMail", + "unseenCount", + "members", + "memberOf", + "createdOnBehalfOf", + "owners", + "settings", + "extensions", + "threads", + "calendar", + "calendarView", + "events", + "conversations", + "photo", + "photos", + "acceptedSenders", + "rejectedSenders", + "drive", + "drives", + "sites", + "planner", + "onenote", + "groupLifecyclePolicies" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.group" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.group" + ], + "summary": "Update entity in groups", + "operationId": "groups.group.UpdateGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.group" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.group" + ], + "summary": "Delete entity from groups", + "operationId": "groups.group.DeleteGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/acceptedSenders": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get acceptedSenders from groups", + "operationId": "groups.ListAcceptedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Create new navigation property to acceptedSenders for groups", + "operationId": "groups.CreateAcceptedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/acceptedSenders/{directoryObject-id}": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get acceptedSenders from groups", + "operationId": "groups.GetAcceptedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Update the navigation property acceptedSenders in groups", + "operationId": "groups.UpdateAcceptedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Delete navigation property acceptedSenders for groups", + "operationId": "groups.DeleteAcceptedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/calendar": { + "get": { + "tags": [ + "groups.calendar" + ], + "summary": "Get calendar from groups", + "operationId": "groups.GetCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar" + ], + "summary": "Update the navigation property calendar in groups", + "operationId": "groups.UpdateCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar" + ], + "summary": "Delete navigation property calendar for groups", + "operationId": "groups.DeleteCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/calendar/calendarView": { + "get": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.calendar.ListCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Create new navigation property to calendarView for groups", + "operationId": "groups.calendar.CreateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView", + "/groups/{group-id}/events/{event-id}/calendar/calendarView" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}": { + "get": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.calendar.GetCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Update the navigation property calendarView in groups", + "operationId": "groups.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Delete navigation property calendarView for groups", + "operationId": "groups.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "groups.calendar.calendarView.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.calendar.calendarView.ListAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for groups", + "operationId": "groups.calendar.calendarView.CreateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/attachments", + "/groups/{group-id}/calendarView/{event-id}/attachments", + "/groups/{group-id}/events/{event-id}/attachments" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "groups.calendar.calendarView.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.calendar.calendarView.GetAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in groups", + "operationId": "groups.calendar.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for groups", + "operationId": "groups.calendar.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "groups.calendar.calendarView.calendar" + ], + "summary": "Get calendar from groups", + "operationId": "groups.calendar.calendarView.GetCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in groups", + "operationId": "groups.calendar.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for groups", + "operationId": "groups.calendar.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/calendar", + "/groups/{group-id}/calendarView/{event-id}/calendar", + "/groups/{group-id}/events/{event-id}/calendar" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "groups.calendar.calendarView.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.calendar.calendarView.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.calendar.calendarView.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/extensions", + "/groups/{group-id}/calendarView/{event-id}/extensions", + "/groups/{group-id}/events/{event-id}/extensions" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.calendar.calendarView.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.calendar.calendarView.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.calendarView.extension" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.calendar.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.calendarView.extension" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.calendar.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/calendarView/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "groups.calendar.calendarView.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.calendar.calendarView.ListInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.calendarView.event" + ], + "summary": "Create new navigation property to instances for groups", + "operationId": "groups.calendar.calendarView.CreateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/instances", + "/groups/{group-id}/calendarView/{event-id}/instances", + "/groups/{group-id}/events/{event-id}/instances" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "groups.calendar.calendarView.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.calendar.calendarView.GetInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.calendarView.event" + ], + "summary": "Update the navigation property instances in groups", + "operationId": "groups.calendar.calendarView.UpdateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.calendarView.event" + ], + "summary": "Delete navigation property instances for groups", + "operationId": "groups.calendar.calendarView.DeleteInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendar.calendarView.instances.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendar.calendarView.instances.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendar.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendar.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendar.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendar.calendarView.instances.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendar.calendarView.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendar.calendarView.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendar.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.calendar.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendar.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.calendar.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.calendar.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendar.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.calendar.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendar.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.calendar.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.calendar.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendar.calendarView.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendar/events": { + "get": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Get events from groups", + "operationId": "groups.calendar.ListEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Create new navigation property to events for groups", + "operationId": "groups.calendar.CreateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/events", + "/groups/{group-id}/events/{event-id}/calendar/events" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}": { + "get": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Get events from groups", + "operationId": "groups.calendar.GetEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Update the navigation property events in groups", + "operationId": "groups.calendar.UpdateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.event" + ], + "summary": "Delete navigation property events for groups", + "operationId": "groups.calendar.DeleteEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/attachments": { + "get": { + "tags": [ + "groups.calendar.events.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.calendar.events.ListAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.events.attachment" + ], + "summary": "Create new navigation property to attachments for groups", + "operationId": "groups.calendar.events.CreateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments", + "/groups/{group-id}/calendarView/{event-id}/attachments", + "/groups/{group-id}/events/{event-id}/attachments" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "groups.calendar.events.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.calendar.events.GetAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.events.attachment" + ], + "summary": "Update the navigation property attachments in groups", + "operationId": "groups.calendar.events.UpdateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.events.attachment" + ], + "summary": "Delete navigation property attachments for groups", + "operationId": "groups.calendar.events.DeleteAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/calendar": { + "get": { + "tags": [ + "groups.calendar.events.calendar" + ], + "summary": "Get calendar from groups", + "operationId": "groups.calendar.events.GetCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.events.calendar" + ], + "summary": "Update the navigation property calendar in groups", + "operationId": "groups.calendar.events.UpdateCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.events.calendar" + ], + "summary": "Delete navigation property calendar for groups", + "operationId": "groups.calendar.events.DeleteCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/calendar", + "/groups/{group-id}/calendarView/{event-id}/calendar", + "/groups/{group-id}/events/{event-id}/calendar" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/extensions": { + "get": { + "tags": [ + "groups.calendar.events.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.calendar.events.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.events.extension" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.calendar.events.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions", + "/groups/{group-id}/calendarView/{event-id}/extensions", + "/groups/{group-id}/events/{event-id}/extensions" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.calendar.events.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.calendar.events.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.events.extension" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.calendar.events.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.events.extension" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.calendar.events.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/calendarView/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances": { + "get": { + "tags": [ + "groups.calendar.events.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.calendar.events.ListInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.events.event" + ], + "summary": "Create new navigation property to instances for groups", + "operationId": "groups.calendar.events.CreateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances", + "/groups/{group-id}/calendarView/{event-id}/instances", + "/groups/{group-id}/events/{event-id}/instances" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "groups.calendar.events.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.calendar.events.GetInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.events.event" + ], + "summary": "Update the navigation property instances in groups", + "operationId": "groups.calendar.events.UpdateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.events.event" + ], + "summary": "Delete navigation property instances for groups", + "operationId": "groups.calendar.events.DeleteInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendar.events.instances.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendar.events.instances.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendar.events.instances.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendar.events.instances.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendar.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendar.events.instances.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendar.events.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendar.events.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendar.events.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendar.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.calendar.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendar.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.calendar.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.calendar.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendar.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.calendar.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendar.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.calendar.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.calendar.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendar/events/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendar.events.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendarView": { + "get": { + "tags": [ + "groups.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.ListCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.event" + ], + "summary": "Create new navigation property to calendarView for groups", + "operationId": "groups.CreateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/calendarView/{event-id}": { + "get": { + "tags": [ + "groups.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.GetCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.event" + ], + "summary": "Update the navigation property calendarView in groups", + "operationId": "groups.UpdateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.event" + ], + "summary": "Delete navigation property calendarView for groups", + "operationId": "groups.DeleteCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "groups.calendarView.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.calendarView.ListAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for groups", + "operationId": "groups.calendarView.CreateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments", + "/groups/{group-id}/calendar/events/{event-id}/attachments", + "/groups/{group-id}/events/{event-id}/attachments" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "groups.calendarView.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.calendarView.GetAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in groups", + "operationId": "groups.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for groups", + "operationId": "groups.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "groups.calendarView.calendar" + ], + "summary": "Get calendar from groups", + "operationId": "groups.calendarView.GetCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in groups", + "operationId": "groups.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for groups", + "operationId": "groups.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/calendar", + "/groups/{group-id}/calendar/events/{event-id}/calendar", + "/groups/{group-id}/events/{event-id}/calendar" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView": { + "get": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.calendarView.calendar.ListCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Create new navigation property to calendarView for groups", + "operationId": "groups.calendarView.calendar.CreateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView", + "/groups/{group-id}/events/{event-id}/calendar/calendarView" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}": { + "get": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.calendarView.calendar.GetCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Update the navigation property calendarView in groups", + "operationId": "groups.calendarView.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Delete navigation property calendarView for groups", + "operationId": "groups.calendarView.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendarView.calendar.calendarView.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendarView.calendar.calendarView.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendarView.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendarView.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendarView.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendarView.calendar.calendarView.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events": { + "get": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Get events from groups", + "operationId": "groups.calendarView.calendar.ListEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Create new navigation property to events for groups", + "operationId": "groups.calendarView.calendar.CreateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events", + "/groups/{group-id}/events/{event-id}/calendar/events" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}": { + "get": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Get events from groups", + "operationId": "groups.calendarView.calendar.GetEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Update the navigation property events in groups", + "operationId": "groups.calendarView.calendar.UpdateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.calendar.event" + ], + "summary": "Delete navigation property events for groups", + "operationId": "groups.calendarView.calendar.DeleteEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendarView.calendar.events.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendarView.calendar.events.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendarView.calendar.events.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendarView.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendarView.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendarView.calendar.events.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendarView.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.calendarView.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/multiValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendarView.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.calendarView.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.calendarView.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendarView.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.calendarView.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/singleValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendarView.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.calendarView.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.calendarView.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "groups.calendarView.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.calendarView.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.calendarView.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions", + "/groups/{group-id}/calendar/events/{event-id}/extensions", + "/groups/{group-id}/events/{event-id}/extensions" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.calendarView.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.calendarView.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.extension" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.extension" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "groups.calendarView.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.calendarView.ListInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.event" + ], + "summary": "Create new navigation property to instances for groups", + "operationId": "groups.calendarView.CreateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances", + "/groups/{group-id}/calendar/events/{event-id}/instances", + "/groups/{group-id}/events/{event-id}/instances" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "groups.calendarView.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.calendarView.GetInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.event" + ], + "summary": "Update the navigation property instances in groups", + "operationId": "groups.calendarView.UpdateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.event" + ], + "summary": "Delete navigation property instances for groups", + "operationId": "groups.calendarView.DeleteInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendarView.instances.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendarView.instances.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendarView.instances.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.calendarView.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.calendarView.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.calendarView.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.calendarView.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/calendarView/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.calendarView.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/conversations": { + "get": { + "tags": [ + "groups.conversation" + ], + "summary": "Get conversations from groups", + "operationId": "groups.ListConversations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "topic", + "topic desc", + "hasAttachments", + "hasAttachments desc", + "lastDeliveredDateTime", + "lastDeliveredDateTime desc", + "uniqueSenders", + "uniqueSenders desc", + "preview", + "preview desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "topic", + "hasAttachments", + "lastDeliveredDateTime", + "uniqueSenders", + "preview", + "threads" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of conversation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.conversation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversation" + ], + "summary": "Create new navigation property to conversations for groups", + "operationId": "groups.CreateConversations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/conversations/{conversation-id}": { + "get": { + "tags": [ + "groups.conversation" + ], + "summary": "Get conversations from groups", + "operationId": "groups.GetConversations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "topic", + "hasAttachments", + "lastDeliveredDateTime", + "uniqueSenders", + "preview", + "threads" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversation" + ], + "summary": "Update the navigation property conversations in groups", + "operationId": "groups.UpdateConversations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversation" + ], + "summary": "Delete navigation property conversations for groups", + "operationId": "groups.DeleteConversations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/conversations/{conversation-id}/threads": { + "get": { + "tags": [ + "groups.conversations.conversationThread" + ], + "summary": "Get threads from groups", + "operationId": "groups.conversations.ListThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "toRecipients", + "toRecipients desc", + "topic", + "topic desc", + "hasAttachments", + "hasAttachments desc", + "lastDeliveredDateTime", + "lastDeliveredDateTime desc", + "uniqueSenders", + "uniqueSenders desc", + "ccRecipients", + "ccRecipients desc", + "preview", + "preview desc", + "isLocked", + "isLocked desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "toRecipients", + "topic", + "hasAttachments", + "lastDeliveredDateTime", + "uniqueSenders", + "ccRecipients", + "preview", + "isLocked", + "posts" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "posts" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of conversationThread", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversations.conversationThread" + ], + "summary": "Create new navigation property to threads for groups", + "operationId": "groups.conversations.CreateThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}": { + "get": { + "tags": [ + "groups.conversations.conversationThread" + ], + "summary": "Get threads from groups", + "operationId": "groups.conversations.GetThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "toRecipients", + "topic", + "hasAttachments", + "lastDeliveredDateTime", + "uniqueSenders", + "ccRecipients", + "preview", + "isLocked", + "posts" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "posts" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.conversationThread" + ], + "summary": "Update the navigation property threads in groups", + "operationId": "groups.conversations.UpdateThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.conversationThread" + ], + "summary": "Delete navigation property threads for groups", + "operationId": "groups.conversations.DeleteThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action reply", + "operationId": "groups.conversations.threads.reply", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Post": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get posts from groups", + "operationId": "groups.conversations.threads.ListPosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "body", + "body desc", + "receivedDateTime", + "receivedDateTime desc", + "hasAttachments", + "hasAttachments desc", + "from", + "from desc", + "sender", + "sender desc", + "conversationThreadId", + "conversationThreadId desc", + "newParticipants", + "newParticipants desc", + "conversationId", + "conversationId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "body", + "receivedDateTime", + "hasAttachments", + "from", + "sender", + "conversationThreadId", + "newParticipants", + "conversationId", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of post", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Create new navigation property to posts for groups", + "operationId": "groups.conversations.threads.CreatePosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get posts from groups", + "operationId": "groups.conversations.threads.GetPosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "body", + "receivedDateTime", + "hasAttachments", + "from", + "sender", + "conversationThreadId", + "newParticipants", + "conversationId", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Update the navigation property posts in groups", + "operationId": "groups.conversations.threads.UpdatePosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Delete navigation property posts for groups", + "operationId": "groups.conversations.threads.DeletePosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get attachments from groups", + "operationId": "groups.conversations.threads.posts.ListAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Create new navigation property to attachments for groups", + "operationId": "groups.conversations.threads.posts.CreateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get attachments from groups", + "operationId": "groups.conversations.threads.posts.GetAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Update the navigation property attachments in groups", + "operationId": "groups.conversations.threads.posts.UpdateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Delete navigation property attachments for groups", + "operationId": "groups.conversations.threads.posts.DeleteAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get extensions from groups", + "operationId": "groups.conversations.threads.posts.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.conversations.threads.posts.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get extensions from groups", + "operationId": "groups.conversations.threads.posts.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.conversations.threads.posts.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.conversations.threads.posts.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get inReplyTo from groups", + "operationId": "groups.conversations.threads.posts.GetInReplyTo", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "body", + "receivedDateTime", + "hasAttachments", + "from", + "sender", + "conversationThreadId", + "newParticipants", + "conversationId", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Update the navigation property inReplyTo in groups", + "operationId": "groups.conversations.threads.posts.UpdateInReplyTo", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Delete navigation property inReplyTo for groups", + "operationId": "groups.conversations.threads.posts.DeleteInReplyTo", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action forward", + "operationId": "groups.conversations.threads.posts.inReplyTo.forward", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action reply", + "operationId": "groups.conversations.threads.posts.inReplyTo.reply", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Post": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action forward", + "operationId": "groups.conversations.threads.posts.forward", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action reply", + "operationId": "groups.conversations.threads.posts.reply", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Post": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.conversations.threads.posts.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.conversations.threads.posts.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.conversations.threads.posts.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.conversations.threads.posts.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.conversations.threads.posts.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.conversations.threads.posts.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.conversations.threads.posts.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.conversations.threads.posts.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.conversations.threads.posts.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversations.threads.post" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.conversations.threads.posts.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversation-id", + "in": "path", + "description": "key: id of conversation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversation" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/createdOnBehalfOf": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get createdOnBehalfOf from groups", + "operationId": "groups.GetCreatedOnBehalfOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/createdOnBehalfOf/$ref": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get ref of createdOnBehalfOf from groups", + "operationId": "groups.GetRefCreatedOnBehalfOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Update the ref of navigation property createdOnBehalfOf in groups", + "operationId": "groups.UpdateRefCreatedOnBehalfOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Delete ref of navigation property createdOnBehalfOf for groups", + "operationId": "groups.DeleteRefCreatedOnBehalfOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/drive": { + "get": { + "tags": [ + "groups.drive" + ], + "summary": "Get drive from groups", + "operationId": "groups.GetDrive", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.drive" + ], + "summary": "Update the navigation property drive in groups", + "operationId": "groups.UpdateDrive", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.drive" + ], + "summary": "Delete navigation property drive for groups", + "operationId": "groups.DeleteDrive", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/drives": { + "get": { + "tags": [ + "groups.drive" + ], + "summary": "Get drives from groups", + "operationId": "groups.ListDrives", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "driveType", + "driveType desc", + "owner", + "owner desc", + "quota", + "quota desc", + "sharePointIds", + "sharePointIds desc", + "system", + "system desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of drive", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.drive" + ], + "summary": "Create new navigation property to drives for groups", + "operationId": "groups.CreateDrives", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/drives/{drive-id}": { + "get": { + "tags": [ + "groups.drive" + ], + "summary": "Get drives from groups", + "operationId": "groups.GetDrives", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.drive" + ], + "summary": "Update the navigation property drives in groups", + "operationId": "groups.UpdateDrives", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.drive" + ], + "summary": "Delete navigation property drives for groups", + "operationId": "groups.DeleteDrives", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/events": { + "get": { + "tags": [ + "groups.event" + ], + "summary": "Get events from groups", + "operationId": "groups.ListEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.event" + ], + "summary": "Create new navigation property to events for groups", + "operationId": "groups.CreateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/events/{event-id}": { + "get": { + "tags": [ + "groups.event" + ], + "summary": "Get events from groups", + "operationId": "groups.GetEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.event" + ], + "summary": "Update the navigation property events in groups", + "operationId": "groups.UpdateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.event" + ], + "summary": "Delete navigation property events for groups", + "operationId": "groups.DeleteEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/events/{event-id}/attachments": { + "get": { + "tags": [ + "groups.events.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.events.ListAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.attachment" + ], + "summary": "Create new navigation property to attachments for groups", + "operationId": "groups.events.CreateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments", + "/groups/{group-id}/calendar/events/{event-id}/attachments", + "/groups/{group-id}/calendarView/{event-id}/attachments" + ] + }, + "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "groups.events.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.events.GetAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.attachment" + ], + "summary": "Update the navigation property attachments in groups", + "operationId": "groups.events.UpdateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.attachment" + ], + "summary": "Delete navigation property attachments for groups", + "operationId": "groups.events.DeleteAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/groups/{group-id}/calendarView/{event-id}/attachments/{attachment-id}" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar": { + "get": { + "tags": [ + "groups.events.calendar" + ], + "summary": "Get calendar from groups", + "operationId": "groups.events.GetCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.calendar" + ], + "summary": "Update the navigation property calendar in groups", + "operationId": "groups.events.UpdateCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.calendar" + ], + "summary": "Delete navigation property calendar for groups", + "operationId": "groups.events.DeleteCalendar", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/calendar", + "/groups/{group-id}/calendar/events/{event-id}/calendar", + "/groups/{group-id}/calendarView/{event-id}/calendar" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView": { + "get": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.events.calendar.ListCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Create new navigation property to calendarView for groups", + "operationId": "groups.events.calendar.CreateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}": { + "get": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Get calendarView from groups", + "operationId": "groups.events.calendar.GetCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Update the navigation property calendarView in groups", + "operationId": "groups.events.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Delete navigation property calendarView for groups", + "operationId": "groups.events.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.events.calendar.calendarView.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.events.calendar.calendarView.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.events.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.events.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.events.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.events.calendar.calendarView.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events": { + "get": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Get events from groups", + "operationId": "groups.events.calendar.ListEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Create new navigation property to events for groups", + "operationId": "groups.events.calendar.CreateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events", + "/groups/{group-id}/calendarView/{event-id}/calendar/events" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}": { + "get": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Get events from groups", + "operationId": "groups.events.calendar.GetEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Update the navigation property events in groups", + "operationId": "groups.events.calendar.UpdateEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.calendar.event" + ], + "summary": "Delete navigation property events for groups", + "operationId": "groups.events.calendar.DeleteEvents", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/events/{event-id}", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.events.calendar.events.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.events.calendar.events.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.events.calendar.events.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.events.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.events.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/events/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.events.calendar.events.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.events.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.events.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/multiValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.events.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.events.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.events.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.events.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.events.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/singleValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.events.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.events.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.events.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/events/{event-id}/extensions": { + "get": { + "tags": [ + "groups.events.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.events.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.extension" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.events.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions", + "/groups/{group-id}/calendar/events/{event-id}/extensions", + "/groups/{group-id}/calendarView/{event-id}/extensions" + ] + }, + "/groups/{group-id}/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.events.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.events.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.extension" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.events.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.extension" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.events.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/groups/{group-id}/calendarView/{event-id}/extensions/{extension-id}" + ] + }, + "/groups/{group-id}/events/{event-id}/instances": { + "get": { + "tags": [ + "groups.events.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.events.ListInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.event" + ], + "summary": "Create new navigation property to instances for groups", + "operationId": "groups.events.CreateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances", + "/groups/{group-id}/calendar/events/{event-id}/instances", + "/groups/{group-id}/calendarView/{event-id}/instances" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "groups.events.event" + ], + "summary": "Get instances from groups", + "operationId": "groups.events.GetInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.event" + ], + "summary": "Update the navigation property instances in groups", + "operationId": "groups.events.UpdateInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.event" + ], + "summary": "Delete navigation property instances for groups", + "operationId": "groups.events.DeleteInstances", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.events.instances.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/accept" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.events.instances.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/decline" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.events.instances.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/dismissReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.events.instances.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/snoozeReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/groups/{group-id}/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.events.instances.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/events/{event-id}/accept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action accept", + "operationId": "groups.events.accept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/calendarView/{event-id}/accept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendar/events/{event-id}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/groups/{group-id}/calendarView/{event-id}/accept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/accept" + ] + }, + "/groups/{group-id}/events/{event-id}/decline": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action decline", + "operationId": "groups.events.decline", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/calendarView/{event-id}/decline", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendar/events/{event-id}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/groups/{group-id}/calendarView/{event-id}/decline", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/decline" + ] + }, + "/groups/{group-id}/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "groups.events.dismissReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/groups/{group-id}/calendarView/{event-id}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/dismissReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "groups.events.snoozeReminder", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/groups/{group-id}/calendarView/{event-id}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/snoozeReminder" + ] + }, + "/groups/{group-id}/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "groups.events.tentativelyAccept", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/groups/{group-id}/calendarView/{event-id}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/groups/{group-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept" + ] + }, + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/events/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.events.delta", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/delta()" + ] + }, + "/groups/{group-id}/extensions": { + "get": { + "tags": [ + "groups.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.extension" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.extension" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.extension" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/groupLifecyclePolicies": { + "get": { + "tags": [ + "groups.groupLifecyclePolicy" + ], + "summary": "Get groupLifecyclePolicies from groups", + "operationId": "groups.ListGroupLifecyclePolicies", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "groupLifetimeInDays", + "groupLifetimeInDays desc", + "managedGroupTypes", + "managedGroupTypes desc", + "alternateNotificationEmails", + "alternateNotificationEmails desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "groupLifetimeInDays", + "managedGroupTypes", + "alternateNotificationEmails" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of groupLifecyclePolicy", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.groupLifecyclePolicy" + ], + "summary": "Create new navigation property to groupLifecyclePolicies for groups", + "operationId": "groups.CreateGroupLifecyclePolicies", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}": { + "get": { + "tags": [ + "groups.groupLifecyclePolicy" + ], + "summary": "Get groupLifecyclePolicies from groups", + "operationId": "groups.GetGroupLifecyclePolicies", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "groupLifetimeInDays", + "managedGroupTypes", + "alternateNotificationEmails" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.groupLifecyclePolicy" + ], + "summary": "Update the navigation property groupLifecyclePolicies in groups", + "operationId": "groups.UpdateGroupLifecyclePolicies", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.groupLifecyclePolicy" + ], + "summary": "Delete navigation property groupLifecyclePolicies for groups", + "operationId": "groups.DeleteGroupLifecyclePolicies", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "groupLifecyclePolicy-id", + "in": "path", + "description": "key: id of groupLifecyclePolicy", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupLifecyclePolicy" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/memberOf": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get memberOf from groups", + "operationId": "groups.ListMemberOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/memberOf/$ref": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get ref of memberOf from groups", + "operationId": "groups.ListRefMemberOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Create new navigation property ref to memberOf for groups", + "operationId": "groups.CreateRefMemberOf", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/members": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get members from groups", + "operationId": "groups.ListMembers", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/members/$ref": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get ref of members from groups", + "operationId": "groups.ListRefMembers", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Create new navigation property ref to members for groups", + "operationId": "groups.CreateRefMembers", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/addFavorite": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action addFavorite", + "operationId": "groups.addFavorite", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/checkMemberGroups": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "groups.checkMemberGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/getMemberGroups": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "groups.getMemberGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/getMemberObjects": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "groups.getMemberObjects", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/removeFavorite": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action removeFavorite", + "operationId": "groups.removeFavorite", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/renew": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action renew", + "operationId": "groups.renew", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/resetUnseenCount": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action resetUnseenCount", + "operationId": "groups.resetUnseenCount", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/restore": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action restore", + "operationId": "groups.restore", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/subscribeByMail": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action subscribeByMail", + "operationId": "groups.subscribeByMail", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/unsubscribeByMail": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action unsubscribeByMail", + "operationId": "groups.unsubscribeByMail", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groups/{group-id}/onenote": { + "get": { + "tags": [ + "groups.onenote" + ], + "summary": "Get onenote from groups", + "operationId": "groups.GetOnenote", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote" + ], + "summary": "Update the navigation property onenote in groups", + "operationId": "groups.UpdateOnenote", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote" + ], + "summary": "Delete navigation property onenote for groups", + "operationId": "groups.DeleteOnenote", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/notebooks": { + "get": { + "tags": [ + "groups.onenote.notebook" + ], + "summary": "Get notebooks from groups", + "operationId": "groups.onenote.ListNotebooks", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "userRole", + "userRole desc", + "isShared", + "isShared desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc", + "links", + "links desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of notebook", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebook" + ], + "summary": "Create new navigation property to notebooks for groups", + "operationId": "groups.onenote.CreateNotebooks", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}": { + "get": { + "tags": [ + "groups.onenote.notebook" + ], + "summary": "Get notebooks from groups", + "operationId": "groups.onenote.GetNotebooks", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebook" + ], + "summary": "Update the navigation property notebooks in groups", + "operationId": "groups.onenote.UpdateNotebooks", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebook" + ], + "summary": "Delete navigation property notebooks for groups", + "operationId": "groups.onenote.DeleteNotebooks", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.notebooks.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.notebooks.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.notebooks.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.notebooks.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.notebooks.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSection from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSection in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSection for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.notebooks.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.notebooks.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.notebooks.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.notebooks.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.notebooks.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.notebooks.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.notebooks.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.notebooks.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.notebooks.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.notebooks.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.notebooks.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.notebooks.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.notebooks.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.notebooks.sections.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.notebooks.sections.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.notebooks.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.notebooks.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.notebooks.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.notebooks.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.notebooks.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.notebooks.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSection from groups", + "operationId": "groups.onenote.notebooks.sections.pages.GetParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSection in groups", + "operationId": "groups.onenote.notebooks.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSection for groups", + "operationId": "groups.onenote.notebooks.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.notebooks.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.notebooks.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.notebooks.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.notebooks.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.notebooks.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.notebooks.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.notebooks.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.notebooks.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.notebooks.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function getRecentNotebooks", + "operationId": "groups.onenote.notebooks.getRecentNotebooks", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "includePersonalNotebooks", + "in": "path", + "description": "Usage: includePersonalNotebooks={includePersonalNotebooks}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recentNotebook" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/groups/{group-id}/onenote/operations": { + "get": { + "tags": [ + "groups.onenote.onenoteOperation" + ], + "summary": "Get operations from groups", + "operationId": "groups.onenote.ListOperations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "status", + "status desc", + "createdDateTime", + "createdDateTime desc", + "lastActionDateTime", + "lastActionDateTime desc", + "resourceLocation", + "resourceLocation desc", + "resourceId", + "resourceId desc", + "error", + "error desc", + "percentComplete", + "percentComplete desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteOperation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.onenoteOperation" + ], + "summary": "Create new navigation property to operations for groups", + "operationId": "groups.onenote.CreateOperations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/operations/{onenoteOperation-id}": { + "get": { + "tags": [ + "groups.onenote.onenoteOperation" + ], + "summary": "Get operations from groups", + "operationId": "groups.onenote.GetOperations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.onenoteOperation" + ], + "summary": "Update the navigation property operations in groups", + "operationId": "groups.onenote.UpdateOperations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.onenoteOperation" + ], + "summary": "Delete navigation property operations for groups", + "operationId": "groups.onenote.DeleteOperations", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages": { + "get": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}": { + "get": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.onenotePage" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.parentNotebook.sectionGroups.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.parentNotebook.sectionGroups.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.parentNotebook.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.parentNotebook.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.pages.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.pages.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.pages.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentSection from groups", + "operationId": "groups.onenote.pages.GetParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSection in groups", + "operationId": "groups.onenote.pages.UpdateParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSection for groups", + "operationId": "groups.onenote.pages.DeleteParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.pages.parentSection.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.pages.parentSection.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.pages.parentSection.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.pages.parentSection.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.pages.parentSection.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.parentSection.pages.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.parentSection.pages.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.pages.parentSection.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.pages.parentSection.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.pages.parentSection.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentSection.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentSection.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentSection.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentSection.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentSection.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentSection.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentSection.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.pages.parentSection.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/resources": { + "get": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Get resources from groups", + "operationId": "groups.onenote.ListResources", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "content", + "content desc", + "contentUrl", + "contentUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteResource", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Create new navigation property to resources for groups", + "operationId": "groups.onenote.CreateResources", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/resources/{onenoteResource-id}": { + "get": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Get resources from groups", + "operationId": "groups.onenote.GetResources", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Update the navigation property resources in groups", + "operationId": "groups.onenote.UpdateResources", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Delete navigation property resources for groups", + "operationId": "groups.onenote.DeleteResources", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content": { + "get": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Get media content for the navigation property resources from groups", + "operationId": "groups.onenote.GetResourcesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.onenoteResource" + ], + "summary": "Update media content for the navigation property resources in groups", + "operationId": "groups.onenote.UpdateResourcesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSection from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.GetParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSection in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSection for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sectionGroups.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sectionGroups.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSection from groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSection in groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSection for groups", + "operationId": "groups.onenote.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sectionGroups.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections": { + "get": { + "tags": [ + "groups.onenote.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.onenoteSection" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "groups.onenote.onenoteSection" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.onenoteSection" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.onenoteSection" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.sections.ListPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to pages for groups", + "operationId": "groups.onenote.sections.CreatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get pages from groups", + "operationId": "groups.onenote.sections.GetPages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property pages in groups", + "operationId": "groups.onenote.sections.UpdatePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property pages for groups", + "operationId": "groups.onenote.sections.DeletePages", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get media content for the navigation property pages from groups", + "operationId": "groups.onenote.sections.GetPagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update media content for the navigation property pages in groups", + "operationId": "groups.onenote.sections.UpdatePagesContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "groups.onenote.sections.pages.copyToSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "groups.onenote.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function preview", + "operationId": "groups.onenote.sections.pages.preview", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Get parentSection from groups", + "operationId": "groups.onenote.sections.pages.GetParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSection in groups", + "operationId": "groups.onenote.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSection for groups", + "operationId": "groups.onenote.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sections.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get parentNotebook from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in groups", + "operationId": "groups.onenote.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in groups", + "operationId": "groups.onenote.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in groups", + "operationId": "groups.onenote.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Get sections from groups", + "operationId": "groups.onenote.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in groups", + "operationId": "groups.onenote.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for groups", + "operationId": "groups.onenote.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "groups.onenote.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "groups.onenote.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/groups/{group-id}/owners": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get owners from groups", + "operationId": "groups.ListOwners", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/owners/$ref": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get ref of owners from groups", + "operationId": "groups.ListRefOwners", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Create new navigation property ref to owners for groups", + "operationId": "groups.CreateRefOwners", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/photo": { + "get": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Get photo from groups", + "operationId": "groups.GetPhoto", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Update the navigation property photo in groups", + "operationId": "groups.UpdatePhoto", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Delete navigation property photo for groups", + "operationId": "groups.DeletePhoto", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/photo/$value": { + "get": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from groups", + "operationId": "groups.GetPhotoContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in groups", + "operationId": "groups.UpdatePhotoContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/photos": { + "get": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Get photos from groups", + "operationId": "groups.ListPhotos", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "height", + "height desc", + "width", + "width desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of profilePhoto", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Create new navigation property to photos for groups", + "operationId": "groups.CreatePhotos", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/photos/{profilePhoto-id}": { + "get": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Get photos from groups", + "operationId": "groups.GetPhotos", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Update the navigation property photos in groups", + "operationId": "groups.UpdatePhotos", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Delete navigation property photos for groups", + "operationId": "groups.DeletePhotos", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/photos/{profilePhoto-id}/$value": { + "get": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Get media content for the navigation property photos from groups", + "operationId": "groups.GetPhotosContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "groups.profilePhoto" + ], + "summary": "Update media content for the navigation property photos in groups", + "operationId": "groups.UpdatePhotosContent", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/planner": { + "get": { + "tags": [ + "groups.plannerGroup" + ], + "summary": "Get planner from groups", + "operationId": "groups.GetPlanner", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "plans" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "plans" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.plannerGroup" + ], + "summary": "Update the navigation property planner in groups", + "operationId": "groups.UpdatePlanner", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.plannerGroup" + ], + "summary": "Delete navigation property planner for groups", + "operationId": "groups.DeletePlanner", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/planner/plans": { + "get": { + "tags": [ + "groups.planner.plannerPlan" + ], + "summary": "Get plans from groups", + "operationId": "groups.planner.ListPlans", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "owner", + "title", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/planner/plans/$ref": { + "get": { + "tags": [ + "groups.planner.plannerPlan" + ], + "summary": "Get ref of plans from groups", + "operationId": "groups.planner.ListRefPlans", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.planner.plannerPlan" + ], + "summary": "Create new navigation property ref to plans for groups", + "operationId": "groups.planner.CreateRefPlans", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/rejectedSenders": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get rejectedSenders from groups", + "operationId": "groups.ListRejectedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Create new navigation property to rejectedSenders for groups", + "operationId": "groups.CreateRejectedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/rejectedSenders/{directoryObject-id}": { + "get": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Get rejectedSenders from groups", + "operationId": "groups.GetRejectedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Update the navigation property rejectedSenders in groups", + "operationId": "groups.UpdateRejectedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.directoryObject" + ], + "summary": "Delete navigation property rejectedSenders for groups", + "operationId": "groups.DeleteRejectedSenders", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "directoryObject-id", + "in": "path", + "description": "key: id of directoryObject", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "directoryObject" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/settings": { + "get": { + "tags": [ + "groups.groupSetting" + ], + "summary": "Get settings from groups", + "operationId": "groups.ListSettings", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "templateId", + "templateId desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "templateId", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of groupSetting", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.groupSetting" + ], + "summary": "Create new navigation property to settings for groups", + "operationId": "groups.CreateSettings", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/settings/{groupSetting-id}": { + "get": { + "tags": [ + "groups.groupSetting" + ], + "summary": "Get settings from groups", + "operationId": "groups.GetSettings", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "groupSetting-id", + "in": "path", + "description": "key: id of groupSetting", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSetting" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "templateId", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.groupSetting" + ], + "summary": "Update the navigation property settings in groups", + "operationId": "groups.UpdateSettings", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "groupSetting-id", + "in": "path", + "description": "key: id of groupSetting", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSetting" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.groupSetting" + ], + "summary": "Delete navigation property settings for groups", + "operationId": "groups.DeleteSettings", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "groupSetting-id", + "in": "path", + "description": "key: id of groupSetting", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSetting" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/sites": { + "get": { + "tags": [ + "groups.site" + ], + "summary": "Get sites from groups", + "operationId": "groups.ListSites", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "displayName", + "displayName desc", + "root", + "root desc", + "sharepointIds", + "sharepointIds desc", + "siteCollection", + "siteCollection desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of site", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.site" + ], + "summary": "Create new navigation property to sites for groups", + "operationId": "groups.CreateSites", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/sites/{site-id}": { + "get": { + "tags": [ + "groups.site" + ], + "summary": "Get sites from groups", + "operationId": "groups.GetSites", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.site" + ], + "summary": "Update the navigation property sites in groups", + "operationId": "groups.UpdateSites", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.site" + ], + "summary": "Delete navigation property sites for groups", + "operationId": "groups.DeleteSites", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/threads": { + "get": { + "tags": [ + "groups.conversationThread" + ], + "summary": "Get threads from groups", + "operationId": "groups.ListThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "toRecipients", + "toRecipients desc", + "topic", + "topic desc", + "hasAttachments", + "hasAttachments desc", + "lastDeliveredDateTime", + "lastDeliveredDateTime desc", + "uniqueSenders", + "uniqueSenders desc", + "ccRecipients", + "ccRecipients desc", + "preview", + "preview desc", + "isLocked", + "isLocked desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "toRecipients", + "topic", + "hasAttachments", + "lastDeliveredDateTime", + "uniqueSenders", + "ccRecipients", + "preview", + "isLocked", + "posts" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of conversationThread", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.conversationThread" + ], + "summary": "Create new navigation property to threads for groups", + "operationId": "groups.CreateThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/threads/{conversationThread-id}": { + "get": { + "tags": [ + "groups.conversationThread" + ], + "summary": "Get threads from groups", + "operationId": "groups.GetThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "toRecipients", + "topic", + "hasAttachments", + "lastDeliveredDateTime", + "uniqueSenders", + "ccRecipients", + "preview", + "isLocked", + "posts" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.conversationThread" + ], + "summary": "Update the navigation property threads in groups", + "operationId": "groups.UpdateThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.conversationThread" + ], + "summary": "Delete navigation property threads for groups", + "operationId": "groups.DeleteThreads", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groups/{group-id}/threads/{conversationThread-id}/reply": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action reply", + "operationId": "groups.threads.reply", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Post": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts": { + "get": { + "tags": [ + "groups.threads.post" + ], + "summary": "Get posts from groups", + "operationId": "groups.threads.ListPosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "body", + "body desc", + "receivedDateTime", + "receivedDateTime desc", + "hasAttachments", + "hasAttachments desc", + "from", + "from desc", + "sender", + "sender desc", + "conversationThreadId", + "conversationThreadId desc", + "newParticipants", + "newParticipants desc", + "conversationId", + "conversationId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "body", + "receivedDateTime", + "hasAttachments", + "from", + "sender", + "conversationThreadId", + "newParticipants", + "conversationId", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of post", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.threads.post" + ], + "summary": "Create new navigation property to posts for groups", + "operationId": "groups.threads.CreatePosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}": { + "get": { + "tags": [ + "groups.threads.post" + ], + "summary": "Get posts from groups", + "operationId": "groups.threads.GetPosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "body", + "receivedDateTime", + "hasAttachments", + "from", + "sender", + "conversationThreadId", + "newParticipants", + "conversationId", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.threads.post" + ], + "summary": "Update the navigation property posts in groups", + "operationId": "groups.threads.UpdatePosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.threads.post" + ], + "summary": "Delete navigation property posts for groups", + "operationId": "groups.threads.DeletePosts", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments": { + "get": { + "tags": [ + "groups.threads.posts.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.threads.posts.ListAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.threads.posts.attachment" + ], + "summary": "Create new navigation property to attachments for groups", + "operationId": "groups.threads.posts.CreateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "groups.threads.posts.attachment" + ], + "summary": "Get attachments from groups", + "operationId": "groups.threads.posts.GetAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.threads.posts.attachment" + ], + "summary": "Update the navigation property attachments in groups", + "operationId": "groups.threads.posts.UpdateAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.threads.posts.attachment" + ], + "summary": "Delete navigation property attachments for groups", + "operationId": "groups.threads.posts.DeleteAttachments", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions": { + "get": { + "tags": [ + "groups.threads.posts.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.threads.posts.ListExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.threads.posts.extension" + ], + "summary": "Create new navigation property to extensions for groups", + "operationId": "groups.threads.posts.CreateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "groups.threads.posts.extension" + ], + "summary": "Get extensions from groups", + "operationId": "groups.threads.posts.GetExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.threads.posts.extension" + ], + "summary": "Update the navigation property extensions in groups", + "operationId": "groups.threads.posts.UpdateExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.threads.posts.extension" + ], + "summary": "Delete navigation property extensions for groups", + "operationId": "groups.threads.posts.DeleteExtensions", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo": { + "get": { + "tags": [ + "groups.threads.posts.post" + ], + "summary": "Get inReplyTo from groups", + "operationId": "groups.threads.posts.GetInReplyTo", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "body", + "receivedDateTime", + "hasAttachments", + "from", + "sender", + "conversationThreadId", + "newParticipants", + "conversationId", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "inReplyTo", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.threads.posts.post" + ], + "summary": "Update the navigation property inReplyTo in groups", + "operationId": "groups.threads.posts.UpdateInReplyTo", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.threads.posts.post" + ], + "summary": "Delete navigation property inReplyTo for groups", + "operationId": "groups.threads.posts.DeleteInReplyTo", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action forward", + "operationId": "groups.threads.posts.inReplyTo.forward", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action reply", + "operationId": "groups.threads.posts.inReplyTo.reply", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Post": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action forward", + "operationId": "groups.threads.posts.forward", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action reply", + "operationId": "groups.threads.posts.reply", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Post": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/reply", + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "groups.threads.posts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.threads.posts.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.threads.posts.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for groups", + "operationId": "groups.threads.posts.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.threads.posts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from groups", + "operationId": "groups.threads.posts.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.threads.posts.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in groups", + "operationId": "groups.threads.posts.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.threads.posts.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for groups", + "operationId": "groups.threads.posts.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "groups.threads.posts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.threads.posts.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "groups.threads.posts.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for groups", + "operationId": "groups.threads.posts.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties" + ] + }, + "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "groups.threads.posts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from groups", + "operationId": "groups.threads.posts.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groups.threads.posts.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in groups", + "operationId": "groups.threads.posts.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groups.threads.posts.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for groups", + "operationId": "groups.threads.posts.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "group-id", + "in": "path", + "description": "key: id of group", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "group" + }, + { + "name": "conversationThread-id", + "in": "path", + "description": "key: id of conversationThread", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "conversationThread" + }, + { + "name": "post-id", + "in": "path", + "description": "key: id of post", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "post" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/groups/delta()": { + "get": { + "tags": [ + "groups.Functions" + ], + "summary": "Invoke function delta", + "operationId": "groups.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.group" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/groups/{group-id}/calendar/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendar/events/{event-id}/instances/delta()", + "/groups/{group-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/calendarView/{event-id}/calendar/events/delta()", + "/groups/{group-id}/calendarView/{event-id}/instances/delta()", + "/groups/{group-id}/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/calendarView/delta()", + "/groups/{group-id}/events/{event-id}/calendar/events/delta()", + "/groups/{group-id}/events/{event-id}/instances/delta()", + "/groups/{group-id}/events/delta()" + ] + }, + "/groups/getByIds": { + "post": { + "tags": [ + "groups.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "groups.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groupSettings": { + "get": { + "tags": [ + "groupSettings.groupSetting" + ], + "summary": "Get entities from groupSettings", + "operationId": "groupSettings.groupSetting.ListGroupSetting", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "templateId", + "templateId desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "templateId", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of groupSetting", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "groupSettings.groupSetting" + ], + "summary": "Add new entity to groupSettings", + "operationId": "groupSettings.groupSetting.CreateGroupSetting", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupSettings/{groupSetting-id}": { + "get": { + "tags": [ + "groupSettings.groupSetting" + ], + "summary": "Get entity from groupSettings by key", + "operationId": "groupSettings.groupSetting.GetGroupSetting", + "parameters": [ + { + "name": "groupSetting-id", + "in": "path", + "description": "key: id of groupSetting", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSetting" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "templateId", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groupSettings.groupSetting" + ], + "summary": "Update entity in groupSettings", + "operationId": "groupSettings.groupSetting.UpdateGroupSetting", + "parameters": [ + { + "name": "groupSetting-id", + "in": "path", + "description": "key: id of groupSetting", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSetting" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groupSettings.groupSetting" + ], + "summary": "Delete entity from groupSettings", + "operationId": "groupSettings.groupSetting.DeleteGroupSetting", + "parameters": [ + { + "name": "groupSetting-id", + "in": "path", + "description": "key: id of groupSetting", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSetting" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupSettingTemplates": { + "get": { + "tags": [ + "groupSettingTemplates.groupSettingTemplate" + ], + "summary": "Get entities from groupSettingTemplates", + "operationId": "groupSettingTemplates.groupSettingTemplate.ListGroupSettingTemplate", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "displayName", + "displayName desc", + "description", + "description desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "displayName", + "description", + "values" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of groupSettingTemplate", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupSettingTemplate" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "groupSettingTemplates.groupSettingTemplate" + ], + "summary": "Add new entity to groupSettingTemplates", + "operationId": "groupSettingTemplates.groupSettingTemplate.CreateGroupSettingTemplate", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSettingTemplate" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSettingTemplate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupSettingTemplates/{groupSettingTemplate-id}": { + "get": { + "tags": [ + "groupSettingTemplates.groupSettingTemplate" + ], + "summary": "Get entity from groupSettingTemplates by key", + "operationId": "groupSettingTemplates.groupSettingTemplate.GetGroupSettingTemplate", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "displayName", + "description", + "values" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSettingTemplate" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "groupSettingTemplates.groupSettingTemplate" + ], + "summary": "Update entity in groupSettingTemplates", + "operationId": "groupSettingTemplates.groupSettingTemplate.UpdateGroupSettingTemplate", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.groupSettingTemplate" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "groupSettingTemplates.groupSettingTemplate" + ], + "summary": "Delete entity from groupSettingTemplates", + "operationId": "groupSettingTemplates.groupSettingTemplate.DeleteGroupSettingTemplate", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberGroups": { + "post": { + "tags": [ + "groupSettingTemplates.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "groupSettingTemplates.checkMemberGroups", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groupSettingTemplates/{groupSettingTemplate-id}/getMemberGroups": { + "post": { + "tags": [ + "groupSettingTemplates.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "groupSettingTemplates.getMemberGroups", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groupSettingTemplates/{groupSettingTemplate-id}/getMemberObjects": { + "post": { + "tags": [ + "groupSettingTemplates.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "groupSettingTemplates.getMemberObjects", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groupSettingTemplates/{groupSettingTemplate-id}/restore": { + "post": { + "tags": [ + "groupSettingTemplates.Actions" + ], + "summary": "Invoke action restore", + "operationId": "groupSettingTemplates.restore", + "parameters": [ + { + "name": "groupSettingTemplate-id", + "in": "path", + "description": "key: id of groupSettingTemplate", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "groupSettingTemplate" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/groupSettingTemplates/getByIds": { + "post": { + "tags": [ + "groupSettingTemplates.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "groupSettingTemplates.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/invitations": { + "get": { + "tags": [ + "invitations.invitation" + ], + "summary": "Get entities from invitations", + "operationId": "invitations.invitation.ListInvitation", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "invitedUserDisplayName", + "invitedUserDisplayName desc", + "invitedUserType", + "invitedUserType desc", + "invitedUserEmailAddress", + "invitedUserEmailAddress desc", + "invitedUserMessageInfo", + "invitedUserMessageInfo desc", + "sendInvitationMessage", + "sendInvitationMessage desc", + "inviteRedirectUrl", + "inviteRedirectUrl desc", + "inviteRedeemUrl", + "inviteRedeemUrl desc", + "status", + "status desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "invitedUserDisplayName", + "invitedUserType", + "invitedUserEmailAddress", + "invitedUserMessageInfo", + "sendInvitationMessage", + "inviteRedirectUrl", + "inviteRedeemUrl", + "status", + "invitedUser" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "invitedUser" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of invitation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.invitation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "invitations.invitation" + ], + "summary": "Add new entity to invitations", + "operationId": "invitations.invitation.CreateInvitation", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.invitation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.invitation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/invitations/{invitation-id}": { + "get": { + "tags": [ + "invitations.invitation" + ], + "summary": "Get entity from invitations by key", + "operationId": "invitations.invitation.GetInvitation", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "invitedUserDisplayName", + "invitedUserType", + "invitedUserEmailAddress", + "invitedUserMessageInfo", + "sendInvitationMessage", + "inviteRedirectUrl", + "inviteRedeemUrl", + "status", + "invitedUser" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "invitedUser" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.invitation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "invitations.invitation" + ], + "summary": "Update entity in invitations", + "operationId": "invitations.invitation.UpdateInvitation", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.invitation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "invitations.invitation" + ], + "summary": "Delete entity from invitations", + "operationId": "invitations.invitation.DeleteInvitation", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/invitations/{invitation-id}/invitedUser": { + "get": { + "tags": [ + "invitations.user" + ], + "summary": "Get invitedUser from invitations", + "operationId": "invitations.GetInvitedUser", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "ageGroup", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "city", + "companyName", + "consentProvidedForMinor", + "country", + "department", + "displayName", + "givenName", + "imAddresses", + "jobTitle", + "legalAgeGroupClassification", + "mail", + "mailNickname", + "mobilePhone", + "onPremisesExtensionAttributes", + "onPremisesImmutableId", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "onPremisesDomainName", + "onPremisesSamAccountName", + "onPremisesUserPrincipalName", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "postalCode", + "preferredLanguage", + "provisionedPlans", + "proxyAddresses", + "state", + "streetAddress", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "mailboxSettings", + "aboutMe", + "birthday", + "hireDate", + "interests", + "mySite", + "pastProjects", + "preferredName", + "responsibilities", + "schools", + "skills", + "deviceEnrollmentLimit", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/invitations/{invitation-id}/invitedUser/$ref": { + "get": { + "tags": [ + "invitations.user" + ], + "summary": "Get ref of invitedUser from invitations", + "operationId": "invitations.GetRefInvitedUser", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "invitations.user" + ], + "summary": "Update the ref of navigation property invitedUser in invitations", + "operationId": "invitations.UpdateRefInvitedUser", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "invitations.user" + ], + "summary": "Delete ref of navigation property invitedUser for invitations", + "operationId": "invitations.DeleteRefInvitedUser", + "parameters": [ + { + "name": "invitation-id", + "in": "path", + "description": "key: id of invitation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "invitation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me": { + "get": { + "tags": [ + "me.user" + ], + "summary": "Get me", + "operationId": "me.user.GetUser", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "ageGroup", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "city", + "companyName", + "consentProvidedForMinor", + "country", + "department", + "displayName", + "givenName", + "imAddresses", + "jobTitle", + "legalAgeGroupClassification", + "mail", + "mailNickname", + "mobilePhone", + "onPremisesExtensionAttributes", + "onPremisesImmutableId", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "onPremisesDomainName", + "onPremisesSamAccountName", + "onPremisesUserPrincipalName", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "postalCode", + "preferredLanguage", + "provisionedPlans", + "proxyAddresses", + "state", + "streetAddress", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "mailboxSettings", + "aboutMe", + "birthday", + "hireDate", + "interests", + "mySite", + "pastProjects", + "preferredName", + "responsibilities", + "schools", + "skills", + "deviceEnrollmentLimit", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.user" + ], + "summary": "Update me", + "operationId": "me.user.UpdateUser", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities": { + "get": { + "tags": [ + "me.userActivity" + ], + "summary": "Get activities from me", + "operationId": "me.ListActivities", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "visualElements", + "visualElements desc", + "activitySourceHost", + "activitySourceHost desc", + "activationUrl", + "activationUrl desc", + "appActivityId", + "appActivityId desc", + "appDisplayName", + "appDisplayName desc", + "contentUrl", + "contentUrl desc", + "createdDateTime", + "createdDateTime desc", + "expirationDateTime", + "expirationDateTime desc", + "fallbackUrl", + "fallbackUrl desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "userTimezone", + "userTimezone desc", + "contentInfo", + "contentInfo desc", + "status", + "status desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visualElements", + "activitySourceHost", + "activationUrl", + "appActivityId", + "appDisplayName", + "contentUrl", + "createdDateTime", + "expirationDateTime", + "fallbackUrl", + "lastModifiedDateTime", + "userTimezone", + "contentInfo", + "status", + "historyItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "historyItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of userActivity", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.userActivity" + ], + "summary": "Create new navigation property to activities for me", + "operationId": "me.CreateActivities", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities/{userActivity-id}": { + "get": { + "tags": [ + "me.userActivity" + ], + "summary": "Get activities from me", + "operationId": "me.GetActivities", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visualElements", + "activitySourceHost", + "activationUrl", + "appActivityId", + "appDisplayName", + "contentUrl", + "createdDateTime", + "expirationDateTime", + "fallbackUrl", + "lastModifiedDateTime", + "userTimezone", + "contentInfo", + "status", + "historyItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "historyItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.userActivity" + ], + "summary": "Update the navigation property activities in me", + "operationId": "me.UpdateActivities", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.userActivity" + ], + "summary": "Delete navigation property activities for me", + "operationId": "me.DeleteActivities", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities/{userActivity-id}/historyItems": { + "get": { + "tags": [ + "me.activities.activityHistoryItem" + ], + "summary": "Get historyItems from me", + "operationId": "me.activities.ListHistoryItems", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "status", + "status desc", + "activeDurationSeconds", + "activeDurationSeconds desc", + "createdDateTime", + "createdDateTime desc", + "lastActiveDateTime", + "lastActiveDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "expirationDateTime", + "expirationDateTime desc", + "startedDateTime", + "startedDateTime desc", + "userTimezone", + "userTimezone desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "activeDurationSeconds", + "createdDateTime", + "lastActiveDateTime", + "lastModifiedDateTime", + "expirationDateTime", + "startedDateTime", + "userTimezone", + "activity" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "activity" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of activityHistoryItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.activities.activityHistoryItem" + ], + "summary": "Create new navigation property to historyItems for me", + "operationId": "me.activities.CreateHistoryItems", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}": { + "get": { + "tags": [ + "me.activities.activityHistoryItem" + ], + "summary": "Get historyItems from me", + "operationId": "me.activities.GetHistoryItems", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "activeDurationSeconds", + "createdDateTime", + "lastActiveDateTime", + "lastModifiedDateTime", + "expirationDateTime", + "startedDateTime", + "userTimezone", + "activity" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "activity" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.activities.activityHistoryItem" + ], + "summary": "Update the navigation property historyItems in me", + "operationId": "me.activities.UpdateHistoryItems", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.activities.activityHistoryItem" + ], + "summary": "Delete navigation property historyItems for me", + "operationId": "me.activities.DeleteHistoryItems", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity": { + "get": { + "tags": [ + "me.activities.historyItems.userActivity" + ], + "summary": "Get activity from me", + "operationId": "me.activities.historyItems.GetActivity", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visualElements", + "activitySourceHost", + "activationUrl", + "appActivityId", + "appDisplayName", + "contentUrl", + "createdDateTime", + "expirationDateTime", + "fallbackUrl", + "lastModifiedDateTime", + "userTimezone", + "contentInfo", + "status", + "historyItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "historyItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref": { + "get": { + "tags": [ + "me.activities.historyItems.userActivity" + ], + "summary": "Get ref of activity from me", + "operationId": "me.activities.historyItems.GetRefActivity", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.activities.historyItems.userActivity" + ], + "summary": "Update the ref of navigation property activity in me", + "operationId": "me.activities.historyItems.UpdateRefActivity", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.activities.historyItems.userActivity" + ], + "summary": "Delete ref of navigation property activity for me", + "operationId": "me.activities.historyItems.DeleteRefActivity", + "parameters": [ + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/activities/recent()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function recent", + "operationId": "me.activities.recent", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/calendar": { + "get": { + "tags": [ + "me.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.GetCalendar", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.UpdateCalendar", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.DeleteCalendar", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendar/calendarView": { + "get": { + "tags": [ + "me.calendar.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendar.ListCalendarView", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.event" + ], + "summary": "Create new navigation property to calendarView for me", + "operationId": "me.calendar.CreateCalendarView", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/me/calendars/{calendar-id}/calendarView", + "/me/calendarView/{event-id}/calendar/calendarView", + "/me/events/{event-id}/calendar/calendarView" + ] + }, + "/me/calendar/calendarView/{event-id}": { + "get": { + "tags": [ + "me.calendar.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendar.GetCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.event" + ], + "summary": "Update the navigation property calendarView in me", + "operationId": "me.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.event" + ], + "summary": "Delete navigation property calendarView for me", + "operationId": "me.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/me/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/me/calendar/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendar.calendarView.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendar.calendarView.ListAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendar.calendarView.CreateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendar.calendarView.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendar.calendarView.GetAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendar.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendar.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendar/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendar.calendarView.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.calendar.calendarView.GetCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendar.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendar.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendar/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendar.calendarView.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendar.calendarView.ListExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendar.calendarView.CreateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendar.calendarView.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendar.calendarView.GetExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.calendarView.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendar.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.calendarView.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendar.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendar/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "me.calendar.calendarView.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendar.calendarView.ListInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.calendarView.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendar.calendarView.CreateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendarView/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendar.calendarView.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendar.calendarView.GetInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.calendarView.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendar.calendarView.UpdateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.calendarView.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendar.calendarView.DeleteInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendar.calendarView.instances.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendar.calendarView.instances.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendar.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendar.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendar.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendar/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendar.calendarView.instances.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendar/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendar.calendarView.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendar/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendar.calendarView.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendar/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendar/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendar/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendar.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendar.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendar.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendar.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendar.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendar.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendar.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendar.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendar.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendar.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendar/calendarView/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendar.calendarView.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendar/events": { + "get": { + "tags": [ + "me.calendar.event" + ], + "summary": "Get events from me", + "operationId": "me.calendar.ListEvents", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.event" + ], + "summary": "Create new navigation property to events for me", + "operationId": "me.calendar.CreateEvents", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/me/calendars/{calendar-id}/events", + "/me/calendarView/{event-id}/calendar/events", + "/me/events/{event-id}/calendar/events" + ] + }, + "/me/calendar/events/{event-id}": { + "get": { + "tags": [ + "me.calendar.event" + ], + "summary": "Get events from me", + "operationId": "me.calendar.GetEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.event" + ], + "summary": "Update the navigation property events in me", + "operationId": "me.calendar.UpdateEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.event" + ], + "summary": "Delete navigation property events for me", + "operationId": "me.calendar.DeleteEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/me/calendars/{calendar-id}/events/{event-id}", + "/me/calendarView/{event-id}/calendar/events/{event-id1}", + "/me/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/me/calendar/events/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendar.events.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendar.events.ListAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.events.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendar.events.CreateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendar/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendar.events.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendar.events.GetAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.events.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendar.events.UpdateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.events.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendar.events.DeleteAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendar/events/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendar.events.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.calendar.events.GetCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.events.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendar.events.UpdateCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.events.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendar.events.DeleteCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendar/events/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendar.events.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendar.events.ListExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.events.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendar.events.CreateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendar/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendar.events.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendar.events.GetExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.events.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendar.events.UpdateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.events.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendar.events.DeleteExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendar/events/{event-id}/instances": { + "get": { + "tags": [ + "me.calendar.events.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendar.events.ListInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.events.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendar.events.CreateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendarView/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendar/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendar.events.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendar.events.GetInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.events.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendar.events.UpdateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.events.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendar.events.DeleteInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendar/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendar.events.instances.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendar/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendar.events.instances.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendar.events.instances.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendar.events.instances.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendar.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendar/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendar.events.instances.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendar/events/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendar.events.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendar/events/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendar.events.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendar/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendar.events.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendar/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendar/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendar/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendar.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendar.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendar.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendar.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendar.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendar/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendar.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendar.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendar.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendar.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendar.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendar/events/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendar.events.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendar.CreateMultiValueExtendedProperties", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/me/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/me/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendar.CreateSingleValueExtendedProperties", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/me/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/me/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarGroups": { + "get": { + "tags": [ + "me.calendarGroup" + ], + "summary": "Get calendarGroups from me", + "operationId": "me.ListCalendarGroups", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "classId", + "classId desc", + "changeKey", + "changeKey desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "classId", + "changeKey", + "calendars" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of calendarGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroup" + ], + "summary": "Create new navigation property to calendarGroups for me", + "operationId": "me.CreateCalendarGroups", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendarGroups/{calendarGroup-id}": { + "get": { + "tags": [ + "me.calendarGroup" + ], + "summary": "Get calendarGroups from me", + "operationId": "me.GetCalendarGroups", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "classId", + "changeKey", + "calendars" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroup" + ], + "summary": "Update the navigation property calendarGroups in me", + "operationId": "me.UpdateCalendarGroups", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroup" + ], + "summary": "Delete navigation property calendarGroups for me", + "operationId": "me.DeleteCalendarGroups", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendarGroups/{calendarGroup-id}/calendars": { + "get": { + "tags": [ + "me.calendarGroups.calendar" + ], + "summary": "Get calendars from me", + "operationId": "me.calendarGroups.ListCalendars", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "color", + "color desc", + "changeKey", + "changeKey desc", + "canShare", + "canShare desc", + "canViewPrivateItems", + "canViewPrivateItems desc", + "canEdit", + "canEdit desc", + "owner", + "owner desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of calendar", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendar" + ], + "summary": "Create new navigation property to calendars for me", + "operationId": "me.calendarGroups.CreateCalendars", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendar" + ], + "summary": "Get calendars from me", + "operationId": "me.calendarGroups.GetCalendars", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendar" + ], + "summary": "Update the navigation property calendars in me", + "operationId": "me.calendarGroups.UpdateCalendars", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendar" + ], + "summary": "Delete navigation property calendars for me", + "operationId": "me.calendarGroups.DeleteCalendars", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendarGroups.calendars.ListCalendarView", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to calendarView for me", + "operationId": "me.calendarGroups.calendars.CreateCalendarView", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView", + "/me/calendars/{calendar-id}/calendarView", + "/me/calendarView/{event-id}/calendar/calendarView", + "/me/events/{event-id}/calendar/calendarView" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendarGroups.calendars.GetCalendarView", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property calendarView in me", + "operationId": "me.calendarGroups.calendars.UpdateCalendarView", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property calendarView for me", + "operationId": "me.calendarGroups.calendars.DeleteCalendarView", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/me/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get attachments from me", + "operationId": "me.calendarGroups.calendars.calendarView.ListAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendarGroups.calendars.calendarView.CreateAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get attachments from me", + "operationId": "me.calendarGroups.calendars.calendarView.GetAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendarGroups.calendars.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendarGroups.calendars.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get calendar from me", + "operationId": "me.calendarGroups.calendars.calendarView.GetCalendar", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendarGroups.calendars.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendarGroups.calendars.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get extensions from me", + "operationId": "me.calendarGroups.calendars.calendarView.ListExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendarGroups.calendars.calendarView.CreateExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get extensions from me", + "operationId": "me.calendarGroups.calendars.calendarView.GetExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendarGroups.calendars.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendarGroups.calendars.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendarGroups.calendars.calendarView.ListInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendarGroups.calendars.calendarView.CreateInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendarView/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendarGroups.calendars.calendarView.GetInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendarGroups.calendars.calendarView.UpdateInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendarGroups.calendars.calendarView.DeleteInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarGroups.calendars.calendarView.instances.accept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarGroups.calendars.calendarView.instances.decline", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarGroups.calendars.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarGroups.calendars.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarGroups.calendars.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarGroups.calendars.calendarView.instances.delta", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarGroups.calendars.calendarView.accept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarGroups.calendars.calendarView.decline", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarGroups.calendars.calendarView.dismissReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarGroups.calendars.calendarView.snoozeReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarGroups.calendars.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendarGroups.calendars.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendarGroups.calendars.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarGroups.calendars.calendarView.delta", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get events from me", + "operationId": "me.calendarGroups.calendars.ListEvents", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to events for me", + "operationId": "me.calendarGroups.calendars.CreateEvents", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events", + "/me/calendars/{calendar-id}/events", + "/me/calendarView/{event-id}/calendar/events", + "/me/events/{event-id}/calendar/events" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get events from me", + "operationId": "me.calendarGroups.calendars.GetEvents", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property events in me", + "operationId": "me.calendarGroups.calendars.UpdateEvents", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property events for me", + "operationId": "me.calendarGroups.calendars.DeleteEvents", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}", + "/me/calendars/{calendar-id}/events/{event-id}", + "/me/calendarView/{event-id}/calendar/events/{event-id1}", + "/me/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get attachments from me", + "operationId": "me.calendarGroups.calendars.events.ListAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendarGroups.calendars.events.CreateAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get attachments from me", + "operationId": "me.calendarGroups.calendars.events.GetAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendarGroups.calendars.events.UpdateAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendarGroups.calendars.events.DeleteAttachments", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get calendar from me", + "operationId": "me.calendarGroups.calendars.events.GetCalendar", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendarGroups.calendars.events.UpdateCalendar", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendarGroups.calendars.events.DeleteCalendar", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get extensions from me", + "operationId": "me.calendarGroups.calendars.events.ListExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendarGroups.calendars.events.CreateExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get extensions from me", + "operationId": "me.calendarGroups.calendars.events.GetExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendarGroups.calendars.events.UpdateExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendarGroups.calendars.events.DeleteExtensions", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendarGroups.calendars.events.ListInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendarGroups.calendars.events.CreateInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendarView/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendarGroups.calendars.events.GetInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendarGroups.calendars.events.UpdateInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendarGroups.calendars.events.DeleteInstances", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarGroups.calendars.events.instances.accept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarGroups.calendars.events.instances.decline", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarGroups.calendars.events.instances.dismissReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarGroups.calendars.events.instances.snoozeReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarGroups.calendars.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarGroups.calendars.events.instances.delta", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarGroups.calendars.events.accept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarGroups.calendars.events.decline", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarGroups.calendars.events.dismissReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarGroups.calendars.events.snoozeReminder", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarGroups.calendars.events.tentativelyAccept", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendarGroups.calendars.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendarGroups.calendars.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarGroups.calendars.events.delta", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/me/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendarGroups.calendars.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/me/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarGroups.calendars.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendarGroups.calendars.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendarGroups.calendars.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendars": { + "get": { + "tags": [ + "me.calendar" + ], + "summary": "Get calendars from me", + "operationId": "me.ListCalendars", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "color", + "color desc", + "changeKey", + "changeKey desc", + "canShare", + "canShare desc", + "canViewPrivateItems", + "canViewPrivateItems desc", + "canEdit", + "canEdit desc", + "owner", + "owner desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of calendar", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendar" + ], + "summary": "Create new navigation property to calendars for me", + "operationId": "me.CreateCalendars", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendars/{calendar-id}": { + "get": { + "tags": [ + "me.calendar" + ], + "summary": "Get calendars from me", + "operationId": "me.GetCalendars", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendar" + ], + "summary": "Update the navigation property calendars in me", + "operationId": "me.UpdateCalendars", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendar" + ], + "summary": "Delete navigation property calendars for me", + "operationId": "me.DeleteCalendars", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendars/{calendar-id}/calendarView": { + "get": { + "tags": [ + "me.calendars.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendars.ListCalendarView", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.event" + ], + "summary": "Create new navigation property to calendarView for me", + "operationId": "me.calendars.CreateCalendarView", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/me/calendarView/{event-id}/calendar/calendarView", + "/me/events/{event-id}/calendar/calendarView" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}": { + "get": { + "tags": [ + "me.calendars.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendars.GetCalendarView", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.event" + ], + "summary": "Update the navigation property calendarView in me", + "operationId": "me.calendars.UpdateCalendarView", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.event" + ], + "summary": "Delete navigation property calendarView for me", + "operationId": "me.calendars.DeleteCalendarView", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/me/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendars.calendarView.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendars.calendarView.ListAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendars.calendarView.CreateAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendars.calendarView.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendars.calendarView.GetAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendars.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendars.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendars.calendarView.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.calendars.calendarView.GetCalendar", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendars.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendars.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendars.calendarView.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendars.calendarView.ListExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendars.calendarView.CreateExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendars.calendarView.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendars.calendarView.GetExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.calendarView.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendars.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.calendarView.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendars.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "me.calendars.calendarView.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendars.calendarView.ListInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.calendarView.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendars.calendarView.CreateInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendarView/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendars.calendarView.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendars.calendarView.GetInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.calendarView.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendars.calendarView.UpdateInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.calendarView.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendars.calendarView.DeleteInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendars.calendarView.instances.accept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendars.calendarView.instances.decline", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendars.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendars.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendars.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendars.calendarView.instances.delta", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendars.calendarView.accept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendars.calendarView.decline", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendars.calendarView.dismissReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendars.calendarView.snoozeReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendars.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendars.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendars.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendars.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendars.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendars.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendars.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendars.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendars.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendars.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendars.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendars/{calendar-id}/calendarView/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendars.calendarView.delta", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendars/{calendar-id}/events": { + "get": { + "tags": [ + "me.calendars.event" + ], + "summary": "Get events from me", + "operationId": "me.calendars.ListEvents", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.event" + ], + "summary": "Create new navigation property to events for me", + "operationId": "me.calendars.CreateEvents", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/me/calendarView/{event-id}/calendar/events", + "/me/events/{event-id}/calendar/events" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}": { + "get": { + "tags": [ + "me.calendars.event" + ], + "summary": "Get events from me", + "operationId": "me.calendars.GetEvents", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.event" + ], + "summary": "Update the navigation property events in me", + "operationId": "me.calendars.UpdateEvents", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.event" + ], + "summary": "Delete navigation property events for me", + "operationId": "me.calendars.DeleteEvents", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/me/calendarView/{event-id}/calendar/events/{event-id1}", + "/me/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendars.events.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendars.events.ListAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.events.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendars.events.CreateAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendars.events.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendars.events.GetAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.events.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendars.events.UpdateAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.events.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendars.events.DeleteAttachments", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendars.events.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.calendars.events.GetCalendar", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.events.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendars.events.UpdateCalendar", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.events.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendars.events.DeleteCalendar", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendars.events.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendars.events.ListExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.events.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendars.events.CreateExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendars.events.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendars.events.GetExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.events.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendars.events.UpdateExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.events.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendars.events.DeleteExtensions", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances": { + "get": { + "tags": [ + "me.calendars.events.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendars.events.ListInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.events.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendars.events.CreateInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarView/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendars.events.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendars.events.GetInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.events.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendars.events.UpdateInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.events.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendars.events.DeleteInstances", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendars.events.instances.accept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendars.events.instances.decline", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendars.events.instances.dismissReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendars.events.instances.snoozeReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendars.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendars.events.instances.delta", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendars.events.accept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendars.events.decline", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendars.events.dismissReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendars.events.snoozeReminder", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendars.events.tentativelyAccept", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendars.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendars.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendars.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendars.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendars.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendars.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendars.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendars.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendars.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendars.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendars/{calendar-id}/events/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendars.events.delta", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendars/{calendar-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendars.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendars.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/me/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/me/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendars.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendars.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendars.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendars/{calendar-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendars.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendars.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/me/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/me/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendars.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendars.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendars.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarView": { + "get": { + "tags": [ + "me.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.ListCalendarView", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.event" + ], + "summary": "Create new navigation property to calendarView for me", + "operationId": "me.CreateCalendarView", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendarView/{event-id}": { + "get": { + "tags": [ + "me.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.GetCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.event" + ], + "summary": "Update the navigation property calendarView in me", + "operationId": "me.UpdateCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.event" + ], + "summary": "Delete navigation property calendarView for me", + "operationId": "me.DeleteCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "me.calendarView.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendarView.ListAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.calendarView.CreateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/events/{event-id}/attachments" + ] + }, + "/me/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.calendarView.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.calendarView.GetAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "me.calendarView.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.calendarView.GetCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/events/{event-id}/calendar" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView": { + "get": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendarView.calendar.ListCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Create new navigation property to calendarView for me", + "operationId": "me.calendarView.calendar.CreateCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/me/calendars/{calendar-id}/calendarView", + "/me/events/{event-id}/calendar/calendarView" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}": { + "get": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.calendarView.calendar.GetCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Update the navigation property calendarView in me", + "operationId": "me.calendarView.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Delete navigation property calendarView for me", + "operationId": "me.calendarView.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}", + "/me/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarView.calendar.calendarView.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarView.calendar.calendarView.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarView.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarView.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarView.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarView/{event-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarView.calendar.calendarView.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarView/{event-id}/calendar/events": { + "get": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Get events from me", + "operationId": "me.calendarView.calendar.ListEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Create new navigation property to events for me", + "operationId": "me.calendarView.calendar.CreateEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/me/calendars/{calendar-id}/events", + "/me/events/{event-id}/calendar/events" + ] + }, + "/me/calendarView/{event-id}/calendar/events/{event-id1}": { + "get": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Get events from me", + "operationId": "me.calendarView.calendar.GetEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Update the navigation property events in me", + "operationId": "me.calendarView.calendar.UpdateEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.calendar.event" + ], + "summary": "Delete navigation property events for me", + "operationId": "me.calendarView.calendar.DeleteEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/me/calendars/{calendar-id}/events/{event-id}", + "/me/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarView.calendar.events.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarView.calendar.events.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarView.calendar.events.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarView.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarView.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarView/{event-id}/calendar/events/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarView.calendar.events.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarView.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendarView.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarView.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendarView.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendarView.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarView.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendarView.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarView.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendarView.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendarView.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "me.calendarView.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendarView.ListExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.calendarView.CreateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/events/{event-id}/extensions" + ] + }, + "/me/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.calendarView.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.calendarView.GetExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/events/{event-id}/extensions/{extension-id}" + ] + }, + "/me/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "me.calendarView.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendarView.ListInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.calendarView.CreateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/events/{event-id}/instances" + ] + }, + "/me/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.calendarView.event" + ], + "summary": "Get instances from me", + "operationId": "me.calendarView.GetInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.calendarView.UpdateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.calendarView.DeleteInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/events/{event-id}/instances/{event-id1}" + ] + }, + "/me/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarView.instances.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarView.instances.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarView.instances.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.calendarView.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.calendarView.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.calendarView.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.calendarView.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/calendarView/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.calendarView.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/contactFolders": { + "get": { + "tags": [ + "me.contactFolder" + ], + "summary": "Get contactFolders from me", + "operationId": "me.ListContactFolders", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "parentFolderId", + "parentFolderId desc", + "displayName", + "displayName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contactFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolder" + ], + "summary": "Create new navigation property to contactFolders for me", + "operationId": "me.CreateContactFolders", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}": { + "get": { + "tags": [ + "me.contactFolder" + ], + "summary": "Get contactFolders from me", + "operationId": "me.GetContactFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolder" + ], + "summary": "Update the navigation property contactFolders in me", + "operationId": "me.UpdateContactFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolder" + ], + "summary": "Delete navigation property contactFolders for me", + "operationId": "me.DeleteContactFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/childFolders": { + "get": { + "tags": [ + "me.contactFolders.contactFolder" + ], + "summary": "Get childFolders from me", + "operationId": "me.contactFolders.ListChildFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "parentFolderId", + "parentFolderId desc", + "displayName", + "displayName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contactFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.contactFolder" + ], + "summary": "Create new navigation property to childFolders for me", + "operationId": "me.contactFolders.CreateChildFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}": { + "get": { + "tags": [ + "me.contactFolders.contactFolder" + ], + "summary": "Get childFolders from me", + "operationId": "me.contactFolders.GetChildFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contactFolder-id1", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.contactFolder" + ], + "summary": "Update the navigation property childFolders in me", + "operationId": "me.contactFolders.UpdateChildFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contactFolder-id1", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.contactFolder" + ], + "summary": "Delete navigation property childFolders for me", + "operationId": "me.contactFolders.DeleteChildFolders", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contactFolder-id1", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/childFolders/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.contactFolders.childFolders.delta", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts": { + "get": { + "tags": [ + "me.contactFolders.contact" + ], + "summary": "Get contacts from me", + "operationId": "me.contactFolders.ListContacts", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "parentFolderId", + "parentFolderId desc", + "birthday", + "birthday desc", + "fileAs", + "fileAs desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "initials", + "initials desc", + "middleName", + "middleName desc", + "nickName", + "nickName desc", + "surname", + "surname desc", + "title", + "title desc", + "yomiGivenName", + "yomiGivenName desc", + "yomiSurname", + "yomiSurname desc", + "yomiCompanyName", + "yomiCompanyName desc", + "generation", + "generation desc", + "emailAddresses", + "emailAddresses desc", + "imAddresses", + "imAddresses desc", + "jobTitle", + "jobTitle desc", + "companyName", + "companyName desc", + "department", + "department desc", + "officeLocation", + "officeLocation desc", + "profession", + "profession desc", + "businessHomePage", + "businessHomePage desc", + "assistantName", + "assistantName desc", + "manager", + "manager desc", + "homePhones", + "homePhones desc", + "mobilePhone", + "mobilePhone desc", + "businessPhones", + "businessPhones desc", + "homeAddress", + "homeAddress desc", + "businessAddress", + "businessAddress desc", + "otherAddress", + "otherAddress desc", + "spouseName", + "spouseName desc", + "personalNotes", + "personalNotes desc", + "children", + "children desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contact", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.contact" + ], + "summary": "Create new navigation property to contacts for me", + "operationId": "me.contactFolders.CreateContacts", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}": { + "get": { + "tags": [ + "me.contactFolders.contact" + ], + "summary": "Get contacts from me", + "operationId": "me.contactFolders.GetContacts", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.contact" + ], + "summary": "Update the navigation property contacts in me", + "operationId": "me.contactFolders.UpdateContacts", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.contact" + ], + "summary": "Delete navigation property contacts for me", + "operationId": "me.contactFolders.DeleteContacts", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions": { + "get": { + "tags": [ + "me.contactFolders.contacts.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.contactFolders.contacts.ListExtensions", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.contacts.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.contactFolders.contacts.CreateExtensions", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/extensions" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.contactFolders.contacts.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.contactFolders.contacts.GetExtensions", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.contacts.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.contactFolders.contacts.UpdateExtensions", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.contacts.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.contactFolders.contacts.DeleteExtensions", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/extensions/{extension-id}" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.contactFolders.contacts.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.contactFolders.contacts.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/multiValueExtendedProperties" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.contactFolders.contacts.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.contactFolders.contacts.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.contactFolders.contacts.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo": { + "get": { + "tags": [ + "me.contactFolders.contacts.profilePhoto" + ], + "summary": "Get photo from me", + "operationId": "me.contactFolders.contacts.GetPhoto", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.contacts.profilePhoto" + ], + "summary": "Update the navigation property photo in me", + "operationId": "me.contactFolders.contacts.UpdatePhoto", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.contacts.profilePhoto" + ], + "summary": "Delete navigation property photo for me", + "operationId": "me.contactFolders.contacts.DeletePhoto", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/photo" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value": { + "get": { + "tags": [ + "me.contactFolders.contacts.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from me", + "operationId": "me.contactFolders.contacts.GetPhotoContent", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.contactFolders.contacts.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in me", + "operationId": "me.contactFolders.contacts.UpdatePhotoContent", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.contactFolders.contacts.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.contactFolders.contacts.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/singleValueExtendedProperties" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.contactFolders.contacts.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.contactFolders.contacts.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.contactFolders.contacts.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/contactFolders/{contactFolder-id}/contacts/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.contactFolders.contacts.delta", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/contactFolders/{contactFolder-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.contactFolders.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.contactFolders.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.contactFolders.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.contactFolders.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.contactFolders.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.contactFolders.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.contactFolders.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.contactFolders.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.contactFolders.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.contactFolders.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contactFolders/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.contactFolders.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/contacts": { + "get": { + "tags": [ + "me.contact" + ], + "summary": "Get contacts from me", + "operationId": "me.ListContacts", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "parentFolderId", + "parentFolderId desc", + "birthday", + "birthday desc", + "fileAs", + "fileAs desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "initials", + "initials desc", + "middleName", + "middleName desc", + "nickName", + "nickName desc", + "surname", + "surname desc", + "title", + "title desc", + "yomiGivenName", + "yomiGivenName desc", + "yomiSurname", + "yomiSurname desc", + "yomiCompanyName", + "yomiCompanyName desc", + "generation", + "generation desc", + "emailAddresses", + "emailAddresses desc", + "imAddresses", + "imAddresses desc", + "jobTitle", + "jobTitle desc", + "companyName", + "companyName desc", + "department", + "department desc", + "officeLocation", + "officeLocation desc", + "profession", + "profession desc", + "businessHomePage", + "businessHomePage desc", + "assistantName", + "assistantName desc", + "manager", + "manager desc", + "homePhones", + "homePhones desc", + "mobilePhone", + "mobilePhone desc", + "businessPhones", + "businessPhones desc", + "homeAddress", + "homeAddress desc", + "businessAddress", + "businessAddress desc", + "otherAddress", + "otherAddress desc", + "spouseName", + "spouseName desc", + "personalNotes", + "personalNotes desc", + "children", + "children desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contact", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contact" + ], + "summary": "Create new navigation property to contacts for me", + "operationId": "me.CreateContacts", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contacts/{contact-id}": { + "get": { + "tags": [ + "me.contact" + ], + "summary": "Get contacts from me", + "operationId": "me.GetContacts", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contact" + ], + "summary": "Update the navigation property contacts in me", + "operationId": "me.UpdateContacts", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contact" + ], + "summary": "Delete navigation property contacts for me", + "operationId": "me.DeleteContacts", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contacts/{contact-id}/extensions": { + "get": { + "tags": [ + "me.contacts.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.contacts.ListExtensions", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contacts.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.contacts.CreateExtensions", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions" + ] + }, + "/me/contacts/{contact-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.contacts.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.contacts.GetExtensions", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contacts.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.contacts.UpdateExtensions", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contacts.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.contacts.DeleteExtensions", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}" + ] + }, + "/me/contacts/{contact-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.contacts.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.contacts.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties" + ] + }, + "/me/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.contacts.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.contacts.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.contacts.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/contacts/{contact-id}/photo": { + "get": { + "tags": [ + "me.contacts.profilePhoto" + ], + "summary": "Get photo from me", + "operationId": "me.contacts.GetPhoto", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contacts.profilePhoto" + ], + "summary": "Update the navigation property photo in me", + "operationId": "me.contacts.UpdatePhoto", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contacts.profilePhoto" + ], + "summary": "Delete navigation property photo for me", + "operationId": "me.contacts.DeletePhoto", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo" + ] + }, + "/me/contacts/{contact-id}/photo/$value": { + "get": { + "tags": [ + "me.contacts.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from me", + "operationId": "me.contacts.GetPhotoContent", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.contacts.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in me", + "operationId": "me.contacts.UpdatePhotoContent", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/contacts/{contact-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.contacts.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.contacts.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties" + ] + }, + "/me/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.contacts.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.contacts.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.contacts.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/contacts/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.contacts.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/createdObjects": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get createdObjects from me", + "operationId": "me.ListCreatedObjects", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/createdObjects/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of createdObjects from me", + "operationId": "me.ListRefCreatedObjects", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.directoryObject" + ], + "summary": "Create new navigation property ref to createdObjects for me", + "operationId": "me.CreateRefCreatedObjects", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/deviceManagementTroubleshootingEvents": { + "get": { + "tags": [ + "me.deviceManagementTroubleshootingEvent" + ], + "summary": "Get deviceManagementTroubleshootingEvents from me", + "operationId": "me.ListDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "eventDateTime", + "eventDateTime desc", + "correlationId", + "correlationId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "eventDateTime", + "correlationId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceManagementTroubleshootingEvent", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.deviceManagementTroubleshootingEvent" + ], + "summary": "Create new navigation property to deviceManagementTroubleshootingEvents for me", + "operationId": "me.CreateDeviceManagementTroubleshootingEvents", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": { + "get": { + "tags": [ + "me.deviceManagementTroubleshootingEvent" + ], + "summary": "Get deviceManagementTroubleshootingEvents from me", + "operationId": "me.GetDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "eventDateTime", + "correlationId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.deviceManagementTroubleshootingEvent" + ], + "summary": "Update the navigation property deviceManagementTroubleshootingEvents in me", + "operationId": "me.UpdateDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.deviceManagementTroubleshootingEvent" + ], + "summary": "Delete navigation property deviceManagementTroubleshootingEvents for me", + "operationId": "me.DeleteDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/directReports": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get directReports from me", + "operationId": "me.ListDirectReports", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/directReports/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of directReports from me", + "operationId": "me.ListRefDirectReports", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.directoryObject" + ], + "summary": "Create new navigation property ref to directReports for me", + "operationId": "me.CreateRefDirectReports", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drive": { + "get": { + "tags": [ + "me.drive" + ], + "summary": "Get drive from me", + "operationId": "me.GetDrive", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.drive" + ], + "summary": "Update the navigation property drive in me", + "operationId": "me.UpdateDrive", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.drive" + ], + "summary": "Delete navigation property drive for me", + "operationId": "me.DeleteDrive", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drives": { + "get": { + "tags": [ + "me.drive" + ], + "summary": "Get drives from me", + "operationId": "me.ListDrives", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "driveType", + "driveType desc", + "owner", + "owner desc", + "quota", + "quota desc", + "sharePointIds", + "sharePointIds desc", + "system", + "system desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of drive", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.drive" + ], + "summary": "Create new navigation property to drives for me", + "operationId": "me.CreateDrives", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drives/{drive-id}": { + "get": { + "tags": [ + "me.drive" + ], + "summary": "Get drives from me", + "operationId": "me.GetDrives", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.drive" + ], + "summary": "Update the navigation property drives in me", + "operationId": "me.UpdateDrives", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.drive" + ], + "summary": "Delete navigation property drives for me", + "operationId": "me.DeleteDrives", + "parameters": [ + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/events": { + "get": { + "tags": [ + "me.event" + ], + "summary": "Get events from me", + "operationId": "me.ListEvents", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.event" + ], + "summary": "Create new navigation property to events for me", + "operationId": "me.CreateEvents", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/events/{event-id}": { + "get": { + "tags": [ + "me.event" + ], + "summary": "Get events from me", + "operationId": "me.GetEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.event" + ], + "summary": "Update the navigation property events in me", + "operationId": "me.UpdateEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.event" + ], + "summary": "Delete navigation property events for me", + "operationId": "me.DeleteEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/events/{event-id}/attachments": { + "get": { + "tags": [ + "me.events.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.events.ListAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.events.CreateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments", + "/me/calendar/events/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/me/calendars/{calendar-id}/events/{event-id}/attachments", + "/me/calendarView/{event-id}/attachments" + ] + }, + "/me/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.events.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.events.GetAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.events.UpdateAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.events.DeleteAttachments", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendar/events/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/me/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/me/calendarView/{event-id}/attachments/{attachment-id}" + ] + }, + "/me/events/{event-id}/calendar": { + "get": { + "tags": [ + "me.events.calendar" + ], + "summary": "Get calendar from me", + "operationId": "me.events.GetCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.calendar" + ], + "summary": "Update the navigation property calendar in me", + "operationId": "me.events.UpdateCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.calendar" + ], + "summary": "Delete navigation property calendar for me", + "operationId": "me.events.DeleteCalendar", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/calendar", + "/me/calendar/events/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/me/calendars/{calendar-id}/events/{event-id}/calendar", + "/me/calendarView/{event-id}/calendar" + ] + }, + "/me/events/{event-id}/calendar/calendarView": { + "get": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.events.calendar.ListCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Create new navigation property to calendarView for me", + "operationId": "me.events.calendar.CreateCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/me/calendars/{calendar-id}/calendarView", + "/me/calendarView/{event-id}/calendar/calendarView" + ] + }, + "/me/events/{event-id}/calendar/calendarView/{event-id1}": { + "get": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Get calendarView from me", + "operationId": "me.events.calendar.GetCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Update the navigation property calendarView in me", + "operationId": "me.events.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Delete navigation property calendarView for me", + "operationId": "me.events.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.events.calendar.calendarView.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.events.calendar.calendarView.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.events.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.events.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.events.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/events/{event-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.events.calendar.calendarView.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/events/{event-id}/calendar/events": { + "get": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Get events from me", + "operationId": "me.events.calendar.ListEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Create new navigation property to events for me", + "operationId": "me.events.calendar.CreateEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/me/calendars/{calendar-id}/events", + "/me/calendarView/{event-id}/calendar/events" + ] + }, + "/me/events/{event-id}/calendar/events/{event-id1}": { + "get": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Get events from me", + "operationId": "me.events.calendar.GetEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Update the navigation property events in me", + "operationId": "me.events.calendar.UpdateEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.calendar.event" + ], + "summary": "Delete navigation property events for me", + "operationId": "me.events.calendar.DeleteEvents", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/events/{event-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/me/calendars/{calendar-id}/events/{event-id}", + "/me/calendarView/{event-id}/calendar/events/{event-id1}" + ] + }, + "/me/events/{event-id}/calendar/events/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.events.calendar.events.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/events/{event-id}/calendar/events/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.events.calendar.events.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.events.calendar.events.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.events.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.events.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/events/{event-id}/calendar/events/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.events.calendar.events.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/events/{event-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.events.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.events.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/me/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.events.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.events.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.events.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/events/{event-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.events.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.events.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/me/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.events.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.events.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.events.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/events/{event-id}/extensions": { + "get": { + "tags": [ + "me.events.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.events.ListExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.events.CreateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions", + "/me/calendar/events/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/me/calendars/{calendar-id}/events/{event-id}/extensions", + "/me/calendarView/{event-id}/extensions" + ] + }, + "/me/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.events.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.events.GetExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.events.UpdateExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.events.DeleteExtensions", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendar/events/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/me/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/me/calendarView/{event-id}/extensions/{extension-id}" + ] + }, + "/me/events/{event-id}/instances": { + "get": { + "tags": [ + "me.events.event" + ], + "summary": "Get instances from me", + "operationId": "me.events.ListInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.event" + ], + "summary": "Create new navigation property to instances for me", + "operationId": "me.events.CreateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances", + "/me/calendar/events/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/me/calendars/{calendar-id}/events/{event-id}/instances", + "/me/calendarView/{event-id}/instances" + ] + }, + "/me/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "me.events.event" + ], + "summary": "Get instances from me", + "operationId": "me.events.GetInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.event" + ], + "summary": "Update the navigation property instances in me", + "operationId": "me.events.UpdateInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.event" + ], + "summary": "Delete navigation property instances for me", + "operationId": "me.events.DeleteInstances", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}", + "/me/calendar/events/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/me/calendarView/{event-id}/instances/{event-id1}" + ] + }, + "/me/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.events.instances.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/accept" + ] + }, + "/me/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.events.instances.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/decline" + ] + }, + "/me/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.events.instances.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/dismissReminder" + ] + }, + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.events.instances.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/snoozeReminder" + ] + }, + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/tentativelyAccept" + ] + }, + "/me/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.events.instances.delta", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/events/{event-id}/accept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action accept", + "operationId": "me.events.accept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendar/calendarView/{event-id}/accept", + "/me/calendar/events/{event-id}/instances/{event-id1}/accept", + "/me/calendar/events/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/me/calendars/{calendar-id}/events/{event-id}/accept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/me/calendarView/{event-id}/instances/{event-id1}/accept", + "/me/calendarView/{event-id}/accept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/me/events/{event-id}/calendar/events/{event-id1}/accept", + "/me/events/{event-id}/instances/{event-id1}/accept" + ] + }, + "/me/events/{event-id}/decline": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action decline", + "operationId": "me.events.decline", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendar/calendarView/{event-id}/decline", + "/me/calendar/events/{event-id}/instances/{event-id1}/decline", + "/me/calendar/events/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/me/calendars/{calendar-id}/events/{event-id}/decline", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/me/calendarView/{event-id}/instances/{event-id1}/decline", + "/me/calendarView/{event-id}/decline", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/me/events/{event-id}/calendar/events/{event-id1}/decline", + "/me/events/{event-id}/instances/{event-id1}/decline" + ] + }, + "/me/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "me.events.dismissReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/calendarView/{event-id}/dismissReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendar/events/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/me/calendarView/{event-id}/dismissReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/me/events/{event-id}/instances/{event-id1}/dismissReminder" + ] + }, + "/me/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "me.events.snoozeReminder", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/calendarView/{event-id}/snoozeReminder", + "/me/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendar/events/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/me/calendarView/{event-id}/snoozeReminder", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/me/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/me/events/{event-id}/instances/{event-id1}/snoozeReminder" + ] + }, + "/me/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "me.events.tentativelyAccept", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/calendarView/{event-id}/tentativelyAccept", + "/me/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendar/events/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/me/calendarView/{event-id}/tentativelyAccept", + "/me/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/me/events/{event-id}/instances/{event-id1}/tentativelyAccept" + ] + }, + "/me/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendar/events/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/me/calendarView/{event-id}/multiValueExtendedProperties" + ] + }, + "/me/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendar/events/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/me/calendarView/{event-id}/singleValueExtendedProperties" + ] + }, + "/me/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/me/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/events/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.events.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/extensions": { + "get": { + "tags": [ + "me.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.ListExtensions", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.CreateExtensions", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/extensions/{extension-id}": { + "get": { + "tags": [ + "me.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.GetExtensions", + "parameters": [ + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.UpdateExtensions", + "parameters": [ + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.DeleteExtensions", + "parameters": [ + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/inferenceClassification": { + "get": { + "tags": [ + "me.inferenceClassification" + ], + "summary": "Get inferenceClassification from me", + "operationId": "me.GetInferenceClassification", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overrides" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassification" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.inferenceClassification" + ], + "summary": "Update the navigation property inferenceClassification in me", + "operationId": "me.UpdateInferenceClassification", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassification" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.inferenceClassification" + ], + "summary": "Delete navigation property inferenceClassification for me", + "operationId": "me.DeleteInferenceClassification", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/inferenceClassification/overrides": { + "get": { + "tags": [ + "me.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Get overrides from me", + "operationId": "me.inferenceClassification.ListOverrides", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "classifyAs", + "classifyAs desc", + "senderEmailAddress", + "senderEmailAddress desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "classifyAs", + "senderEmailAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of inferenceClassificationOverride", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Create new navigation property to overrides for me", + "operationId": "me.inferenceClassification.CreateOverrides", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/inferenceClassification/overrides/{inferenceClassificationOverride-id}": { + "get": { + "tags": [ + "me.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Get overrides from me", + "operationId": "me.inferenceClassification.GetOverrides", + "parameters": [ + { + "name": "inferenceClassificationOverride-id", + "in": "path", + "description": "key: id of inferenceClassificationOverride", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "inferenceClassificationOverride" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "classifyAs", + "senderEmailAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Update the navigation property overrides in me", + "operationId": "me.inferenceClassification.UpdateOverrides", + "parameters": [ + { + "name": "inferenceClassificationOverride-id", + "in": "path", + "description": "key: id of inferenceClassificationOverride", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "inferenceClassificationOverride" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Delete navigation property overrides for me", + "operationId": "me.inferenceClassification.DeleteOverrides", + "parameters": [ + { + "name": "inferenceClassificationOverride-id", + "in": "path", + "description": "key: id of inferenceClassificationOverride", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "inferenceClassificationOverride" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights": { + "get": { + "tags": [ + "me.officeGraphInsights" + ], + "summary": "Get insights from me", + "operationId": "me.GetInsights", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "trending", + "shared", + "used" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "trending", + "shared", + "used" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.officeGraphInsights" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.officeGraphInsights" + ], + "summary": "Update the navigation property insights in me", + "operationId": "me.UpdateInsights", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.officeGraphInsights" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.officeGraphInsights" + ], + "summary": "Delete navigation property insights for me", + "operationId": "me.DeleteInsights", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared": { + "get": { + "tags": [ + "me.insights.sharedInsight" + ], + "summary": "Get shared from me", + "operationId": "me.insights.ListShared", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastShared", + "lastShared desc", + "sharingHistory", + "sharingHistory desc", + "resourceVisualization", + "resourceVisualization desc", + "resourceReference", + "resourceReference desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastShared", + "sharingHistory", + "resourceVisualization", + "resourceReference", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sharedInsight", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.insights.sharedInsight" + ], + "summary": "Create new navigation property to shared for me", + "operationId": "me.insights.CreateShared", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared/{sharedInsight-id}": { + "get": { + "tags": [ + "me.insights.sharedInsight" + ], + "summary": "Get shared from me", + "operationId": "me.insights.GetShared", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastShared", + "sharingHistory", + "resourceVisualization", + "resourceReference", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.insights.sharedInsight" + ], + "summary": "Update the navigation property shared in me", + "operationId": "me.insights.UpdateShared", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.sharedInsight" + ], + "summary": "Delete navigation property shared for me", + "operationId": "me.insights.DeleteShared", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod": { + "get": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Get lastSharedMethod from me", + "operationId": "me.insights.shared.GetLastSharedMethod", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/$ref": { + "get": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Get ref of lastSharedMethod from me", + "operationId": "me.insights.shared.GetRefLastSharedMethod", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Update the ref of navigation property lastSharedMethod in me", + "operationId": "me.insights.shared.UpdateRefLastSharedMethod", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Delete ref of navigation property lastSharedMethod for me", + "operationId": "me.insights.shared.DeleteRefLastSharedMethod", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "me.insights.shared.lastSharedMethod.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action commit", + "operationId": "me.insights.shared.lastSharedMethod.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "me.insights.shared.lastSharedMethod.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.shared.lastSharedMethod.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.shared.lastSharedMethod.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "me.insights.shared.lastSharedMethod.Range.boundingRect", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function cell", + "operationId": "me.insights.shared.lastSharedMethod.Range.cell", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.shared.lastSharedMethod.Range.clear", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function column", + "operationId": "me.insights.shared.lastSharedMethod.Range.column", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})", + "/me/insights/trending/{trending-id}/resource/Range/column(column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "me.insights.shared.lastSharedMethod.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "me.insights.shared.lastSharedMethod.Range.columnsAfter-0669", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "me.insights.shared.lastSharedMethod.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "me.insights.shared.lastSharedMethod.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action delete", + "operationId": "me.insights.shared.lastSharedMethod.Range.delete", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/delete", + "/me/insights/trending/{trending-id}/resource/Range/delete", + "/me/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "me.insights.shared.lastSharedMethod.Range.entireColumn", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()", + "/me/insights/trending/{trending-id}/resource/Range/entireColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "me.insights.shared.lastSharedMethod.Range.entireRow", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/entireRow()", + "/me/insights/trending/{trending-id}/resource/Range/entireRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action insert", + "operationId": "me.insights.shared.lastSharedMethod.Range.insert", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/insert", + "/me/insights/trending/{trending-id}/resource/Range/insert", + "/me/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "me.insights.shared.lastSharedMethod.Range.intersection", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "me.insights.shared.lastSharedMethod.Range.lastCell", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastCell()", + "/me/insights/trending/{trending-id}/resource/Range/lastCell()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "me.insights.shared.lastSharedMethod.Range.lastColumn", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()", + "/me/insights/trending/{trending-id}/resource/Range/lastColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "me.insights.shared.lastSharedMethod.Range.lastRow", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastRow()", + "/me/insights/trending/{trending-id}/resource/Range/lastRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action merge", + "operationId": "me.insights.shared.lastSharedMethod.Range.merge", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/merge", + "/me/insights/trending/{trending-id}/resource/Range/merge", + "/me/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "me.insights.shared.lastSharedMethod.Range.offsetRange", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "me.insights.shared.lastSharedMethod.Range.resizedRange", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function row", + "operationId": "me.insights.shared.lastSharedMethod.Range.row", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})", + "/me/insights/trending/{trending-id}/resource/Range/row(row={row})", + "/me/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "me.insights.shared.lastSharedMethod.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "me.insights.shared.lastSharedMethod.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "me.insights.shared.lastSharedMethod.Range.rowsBelow-2035", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "me.insights.shared.lastSharedMethod.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "me.insights.shared.lastSharedMethod.Range.unmerge", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/unmerge", + "/me/insights/trending/{trending-id}/resource/Range/unmerge", + "/me/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "me.insights.shared.lastSharedMethod.Range.usedRange-5ff6", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "me.insights.shared.lastSharedMethod.Range.usedRange-63c8", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "me.insights.shared.lastSharedMethod.Range.visibleView", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/Range/visibleView()", + "/me/insights/trending/{trending-id}/resource/Range/visibleView()", + "/me/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.shared.lastSharedMethod.RangeFill.clear", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "me.insights.shared.lastSharedMethod.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns", + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns", + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "me.insights.shared.lastSharedMethod.RangeFormat.autofitRows", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows", + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitRows", + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action apply", + "operationId": "me.insights.shared.lastSharedMethod.RangeSort.apply", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/RangeSort/apply", + "/me/insights/trending/{trending-id}/resource/RangeSort/apply", + "/me/insights/used/{usedInsight-id}/resource/RangeSort/apply" + ] + }, + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function range", + "operationId": "me.insights.shared.lastSharedMethod.RangeView.range", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/resource/RangeView/range()", + "/me/insights/trending/{trending-id}/resource/RangeView/range()", + "/me/insights/used/{usedInsight-id}/resource/RangeView/range()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource": { + "get": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Get resource from me", + "operationId": "me.insights.shared.GetResource", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared/{sharedInsight-id}/resource/$ref": { + "get": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Get ref of resource from me", + "operationId": "me.insights.shared.GetRefResource", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Update the ref of navigation property resource in me", + "operationId": "me.insights.shared.UpdateRefResource", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.shared.entity" + ], + "summary": "Delete ref of navigation property resource for me", + "operationId": "me.insights.shared.DeleteRefResource", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "me.insights.shared.resource.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action commit", + "operationId": "me.insights.shared.resource.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "me.insights.shared.resource.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.shared.resource.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.shared.resource.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the smallest range that encompasses the given ranges.", + "operationId": "getWorkbookNamedItemRangeBoundingRect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the smallest range that encompasses the given ranges.", + "operationId": "getWorksheetRangeBoundingRect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the smallest range that encompasses the given ranges.", + "operationId": "getWorkbookTableColumnRangeBoundingRect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/cell(row={row},column={column})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the range containing the single cell based on row and column numbers.", + "operationId": "getWorkbookNamedItemRangeCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/me/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/cell(row={row},column={column})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the range object containing the single cell based on row and column numbers.", + "operationId": "getWorksheetRangeCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/me/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/cell(row={row},column={column})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the range object containing the single cell based on row and column numbers.", + "operationId": "getWorkbookTableColumnRangeCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/me/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/clear": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Clear range values such as format, fill, and border.", + "operationId": "clearWorkbookNamedItemRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApplyTo" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/clear": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Clear range values such as format, fill, and border.", + "operationId": "clearWorksheetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApplyTo" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/clear": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Clear range values such as format, fill, and border.", + "operationId": "clearWorkbookTableColumnRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApplyTo" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/column(column={column})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a column contained in the range.", + "operationId": "getWorkbookNamedItemRangeColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/me/insights/trending/{trending-id}/resource/Range/column(column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/column(column={column})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a column contained in the range.", + "operationId": "getWorkseetRangeColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/me/insights/trending/{trending-id}/resource/Range/column(column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/column(column={column})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a column contained in the range.", + "operationId": "getWorkbookTableColumnRangeColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/me/insights/trending/{trending-id}/resource/Range/column(column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsAfter": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a certain number of columns to the right of the given range.", + "operationId": "getWorksheetColumnsAfterRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsAfter(count={count})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a certain number of columns to the right of the given range.", + "operationId": "getWorksheetColumnsAfterRangeWithCount", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsBefore": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a certain number of columns to the left of the given range.", + "operationId": "getWorksheetColumnsBeforeRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/columnsBefore(count={count})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a certain number of columns to the left of the given range.", + "operationId": "getWorksheetColumnsBeforeRangeWithCount", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/delete": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Deletes the cells associated with the range.", + "operationId": "deleteWorkbookNamedItemRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Shift" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/me/insights/trending/{trending-id}/resource/Range/delete", + "/me/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/range/delete": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Deletes the cells associated with the range.", + "operationId": "deleteWorksheetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Shift" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/me/insights/trending/{trending-id}/resource/Range/delete", + "/me/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/delete": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Deletes the cells associated with the range.", + "operationId": "deleteWorkbookTableColumnRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Shift" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/me/insights/trending/{trending-id}/resource/Range/delete", + "/me/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/entireColumn": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets an range that represents the entire column of the range.", + "operationId": "getWorkbookNamedItemRangeEntireColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/me/insights/trending/{trending-id}/resource/Range/entireColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/range/entireColumn": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets an range that represents the entire column of the range.", + "operationId": "getWorksheetRangeEntireColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/me/insights/trending/{trending-id}/resource/Range/entireColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/entireColumn": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets an range that represents the entire column of the range.", + "operationId": "getWorkbookTableColumnRangeEntireColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/me/insights/trending/{trending-id}/resource/Range/entireColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/entireRow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a range that represents the entire row of the range.", + "operationId": "getWorkbookNameRangeEntireRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/me/insights/trending/{trending-id}/resource/Range/entireRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/range/entireRow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a range that represents the entire row of the range.", + "operationId": "getWorksheetRangeEntireRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/me/insights/trending/{trending-id}/resource/Range/entireRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/entireRow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a range that represents the entire row of the range.", + "operationId": "getWorkbookTableColumnRangeEntireRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/me/insights/trending/{trending-id}/resource/Range/entireRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/insert": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space.", + "operationId": "insertWorkbookNamedItemRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Shift" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/me/insights/trending/{trending-id}/resource/Range/insert", + "/me/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/range/insert": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space.", + "operationId": "insertWorksheetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Shift" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/me/insights/trending/{trending-id}/resource/Range/insert", + "/me/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/insert": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space.", + "operationId": "insertWorkbookTableColumnRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Shift" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/me/insights/trending/{trending-id}/resource/Range/insert", + "/me/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the range that represents the rectangular intersection of the given ranges.", + "operationId": "getWorkbookNamedItemRangeIntersection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the range that represents the rectangular intersection of the given ranges.", + "operationId": "getWorksheetRangeIntersection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the range that represents the rectangular intersection of the given ranges.", + "operationId": "getWorkbookTableColumnRangeIntersection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/lastCell": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last cell within the range.", + "operationId": "getWorkbookNamedItemRangeLastCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/me/insights/trending/{trending-id}/resource/Range/lastCell()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/lastCell": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last cell within the range.", + "operationId": "getWorksheetRangeLastCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/me/insights/trending/{trending-id}/resource/Range/lastCell()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/lastCell": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last cell within the range.", + "operationId": "getWorkbookTableColumnRangeLastCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/me/insights/trending/{trending-id}/resource/Range/lastCell()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/lastColumn": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last column within the range.", + "operationId": "getWorkbookNamedItemRangeLastColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/me/insights/trending/{trending-id}/resource/Range/lastColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/lastColumn": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last column within the range.", + "operationId": "getWorksheetRangeLastColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/me/insights/trending/{trending-id}/resource/Range/lastColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/lastColumn": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last column within the range.", + "operationId": "getWorkbookTableColumnRangeLastColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/me/insights/trending/{trending-id}/resource/Range/lastColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/lastRow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last row within the range.", + "operationId": "getWorkbookNamedItemRangeLastRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/me/insights/trending/{trending-id}/resource/Range/lastRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/range/lastRow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last row within the range.", + "operationId": "getWorksheetRangeLastRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/me/insights/trending/{trending-id}/resource/Range/lastRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/lastRow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the last row within the range.", + "operationId": "getWorkbookTableColumnRangeLastRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/me/insights/trending/{trending-id}/resource/Range/lastRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/merge": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Merge the range cells into one region in the worksheet.", + "operationId": "mergeWorkbookNamedItemRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Across" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/me/insights/trending/{trending-id}/resource/Range/merge", + "/me/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/merge": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Merge the range cells into one region in the worksheet.", + "operationId": "mergeWorksheetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Across" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/me/insights/trending/{trending-id}/resource/Range/merge", + "/me/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/merge": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Merge the range cells into one region in the worksheet.", + "operationId": "mergeWorkbookTableColumnRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Across" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/me/insights/trending/{trending-id}/resource/Range/merge", + "/me/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets range that's offset from the specified range.", + "operationId": "getWorkbookNamedItemOffsetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets range that's offset from the specified range.", + "operationId": "getWorksheetOffsetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets range that's offset from the specified range.", + "operationId": "getWorkbookTableColumnOffsetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Get a range similar to the current range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns.", + "operationId": "getWorkbookNamedItemResizedRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Get a range similar to the current range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns.", + "operationId": "getWorksheetResizedRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Get a range similar to the current range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns.", + "operationId": "getWorkbookTableColumnResizedRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/row(row={row})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a row contained in the range.", + "operationId": "getWorkbookNamedItemRangeRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/me/insights/trending/{trending-id}/resource/Range/row(row={row})", + "/me/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/row(row={row})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a row contained in the range.", + "operationId": "getWorksheetRangeRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/me/insights/trending/{trending-id}/resource/Range/row(row={row})", + "/me/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/row(row={row})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a row contained in the range.", + "operationId": "getWorkbookTableColumnRangeRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/me/insights/trending/{trending-id}/resource/Range/row(row={row})", + "/me/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsAbove": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets a certain number of rows above a given range.", + "operationId": "getWorksheetRangeRowAbove", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsAbove(count={count})": { + "get": { + "tags": [ + "me.Functions", + "workbbok" + ], + "summary": "Gets a certain number of rows above a given range.", + "operationId": "getWorksheetRangeRowAboveWithCount", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsBelow": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets certain number of rows below a given range.", + "operationId": "getWorksheetRangeRowBelow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range/rowsBelow(count={count})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets certain number of rows below a given range.", + "operationId": "getWorksheetRangeRowBelowWithCount", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/unmerge": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Unmerge the range cells into separate cells.", + "operationId": "unmergeWorkbookNamedItemRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/me/insights/trending/{trending-id}/resource/Range/unmerge", + "/me/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/unmerge": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Unmerge the range cells into separate cells.", + "operationId": "unmergeWorksheetRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/me/insights/trending/{trending-id}/resource/Range/unmerge", + "/me/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/unmerge": { + "post": { + "tags": [ + "me.Actions", + "workbook" + ], + "summary": "Unmerge the range cells into separate cells.", + "operationId": "unmergeWorkbookTableColumnRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/me/insights/trending/{trending-id}/resource/Range/unmerge", + "/me/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/usedRange": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the used range of the given range.", + "operationId": "getWorkbookNamedItemUsedRnge", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the used range of the given range.", + "operationId": "getWorkbookNamedItemUsedRngeWithValuesOnly", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/usedRange": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the used range of the given range.", + "operationId": "getWorksheetUsedRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the used range of the given range.", + "operationId": "getWorksheetUsedRangeWithValuesOnly", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/usedRange": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the used range of the given range.", + "operationId": "getWorkbookTableColumnUsedRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Gets the used range of the given range.", + "operationId": "getWorkbookTableColumnUsedRangeWithValuesOnly", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/range/visibleView": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Get the range visible from a filtered range.", + "operationId": "getWorkbookNamedItemRangeVisibleView", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RangeView", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/me/insights/trending/{trending-id}/resource/Range/visibleView()", + "/me/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address='
')/visibleView": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Get the range visible from a filtered range.", + "operationId": "getWorksheetRangeVisibleView", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "{workbook-worksheet-id}", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RangeView", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/me/insights/trending/{trending-id}/resource/Range/visibleView()", + "/me/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range/visibleView": { + "get": { + "tags": [ + "me.Functions", + "workbook" + ], + "summary": "Get the range visible from a filtered range.", + "operationId": "getWorkbookTableColumnRangeVisibleView", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RangeView", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/me/insights/trending/{trending-id}/resource/Range/visibleView()", + "/me/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.shared.resource.RangeFill.clear", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "me.insights.shared.resource.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns", + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns", + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "me.insights.shared.resource.RangeFormat.autofitRows", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows", + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitRows", + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/RangeSort/apply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action apply", + "operationId": "me.insights.shared.resource.RangeSort.apply", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply", + "/me/insights/trending/{trending-id}/resource/RangeSort/apply", + "/me/insights/used/{usedInsight-id}/resource/RangeSort/apply" + ] + }, + "/me/insights/shared/{sharedInsight-id}/resource/RangeView/range()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function range", + "operationId": "me.insights.shared.resource.RangeView.range", + "parameters": [ + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()", + "/me/insights/trending/{trending-id}/resource/RangeView/range()", + "/me/insights/used/{usedInsight-id}/resource/RangeView/range()" + ] + }, + "/me/insights/trending": { + "get": { + "tags": [ + "me.insights.trending" + ], + "summary": "Get trending from me", + "operationId": "me.insights.ListTrending", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "weight", + "weight desc", + "resourceVisualization", + "resourceVisualization desc", + "resourceReference", + "resourceReference desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "weight", + "resourceVisualization", + "resourceReference", + "lastModifiedDateTime", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of trending", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.insights.trending" + ], + "summary": "Create new navigation property to trending for me", + "operationId": "me.insights.CreateTrending", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/trending/{trending-id}": { + "get": { + "tags": [ + "me.insights.trending" + ], + "summary": "Get trending from me", + "operationId": "me.insights.GetTrending", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "weight", + "resourceVisualization", + "resourceReference", + "lastModifiedDateTime", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.insights.trending" + ], + "summary": "Update the navigation property trending in me", + "operationId": "me.insights.UpdateTrending", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.trending" + ], + "summary": "Delete navigation property trending for me", + "operationId": "me.insights.DeleteTrending", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/trending/{trending-id}/resource": { + "get": { + "tags": [ + "me.insights.trending.entity" + ], + "summary": "Get resource from me", + "operationId": "me.insights.trending.GetResource", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/trending/{trending-id}/resource/$ref": { + "get": { + "tags": [ + "me.insights.trending.entity" + ], + "summary": "Get ref of resource from me", + "operationId": "me.insights.trending.GetRefResource", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.insights.trending.entity" + ], + "summary": "Update the ref of navigation property resource in me", + "operationId": "me.insights.trending.UpdateRefResource", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.trending.entity" + ], + "summary": "Delete ref of navigation property resource for me", + "operationId": "me.insights.trending.DeleteRefResource", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "me.insights.trending.resource.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action commit", + "operationId": "me.insights.trending.resource.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "me.insights.trending.resource.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.trending.resource.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.trending.resource.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "me.insights.trending.resource.Range.boundingRect", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function cell", + "operationId": "me.insights.trending.resource.Range.cell", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.trending.resource.Range.clear", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/column(column={column})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function column", + "operationId": "me.insights.trending.resource.Range.column", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})", + "/me/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "me.insights.trending.resource.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "me.insights.trending.resource.Range.columnsAfter-0669", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "me.insights.trending.resource.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "me.insights.trending.resource.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/delete": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action delete", + "operationId": "me.insights.trending.resource.Range.delete", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/me/insights/shared/{sharedInsight-id}/resource/Range/delete", + "/me/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/entireColumn()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "me.insights.trending.resource.Range.entireColumn", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/entireRow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "me.insights.trending.resource.Range.entireRow", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/entireRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/insert": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action insert", + "operationId": "me.insights.trending.resource.Range.insert", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/me/insights/shared/{sharedInsight-id}/resource/Range/insert", + "/me/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "me.insights.trending.resource.Range.intersection", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/lastCell()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "me.insights.trending.resource.Range.lastCell", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastCell()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/lastColumn()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "me.insights.trending.resource.Range.lastColumn", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/lastRow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "me.insights.trending.resource.Range.lastRow", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastRow()", + "/me/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/merge": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action merge", + "operationId": "me.insights.trending.resource.Range.merge", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/me/insights/shared/{sharedInsight-id}/resource/Range/merge", + "/me/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "me.insights.trending.resource.Range.offsetRange", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "me.insights.trending.resource.Range.resizedRange", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/row(row={row})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function row", + "operationId": "me.insights.trending.resource.Range.row", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})", + "/me/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "me.insights.trending.resource.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "me.insights.trending.resource.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "me.insights.trending.resource.Range.rowsBelow-2035", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "me.insights.trending.resource.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/unmerge": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "me.insights.trending.resource.Range.unmerge", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/me/insights/shared/{sharedInsight-id}/resource/Range/unmerge", + "/me/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/usedRange()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "me.insights.trending.resource.Range.usedRange-5ff6", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "me.insights.trending.resource.Range.usedRange-63c8", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/insights/trending/{trending-id}/resource/Range/visibleView()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "me.insights.trending.resource.Range.visibleView", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/visibleView()", + "/me/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/me/insights/trending/{trending-id}/resource/RangeFill/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.trending.resource.RangeFill.clear", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "me.insights.trending.resource.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns", + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitRows": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "me.insights.trending.resource.RangeFormat.autofitRows", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows", + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows" + ] + }, + "/me/insights/trending/{trending-id}/resource/RangeSort/apply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action apply", + "operationId": "me.insights.trending.resource.RangeSort.apply", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply", + "/me/insights/shared/{sharedInsight-id}/resource/RangeSort/apply", + "/me/insights/used/{usedInsight-id}/resource/RangeSort/apply" + ] + }, + "/me/insights/trending/{trending-id}/resource/RangeView/range()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function range", + "operationId": "me.insights.trending.resource.RangeView.range", + "parameters": [ + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()", + "/me/insights/shared/{sharedInsight-id}/resource/RangeView/range()", + "/me/insights/used/{usedInsight-id}/resource/RangeView/range()" + ] + }, + "/me/insights/used": { + "get": { + "tags": [ + "me.insights.usedInsight" + ], + "summary": "Get used from me", + "operationId": "me.insights.ListUsed", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastUsed", + "lastUsed desc", + "resourceVisualization", + "resourceVisualization desc", + "resourceReference", + "resourceReference desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastUsed", + "resourceVisualization", + "resourceReference", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of usedInsight", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.insights.usedInsight" + ], + "summary": "Create new navigation property to used for me", + "operationId": "me.insights.CreateUsed", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/used/{usedInsight-id}": { + "get": { + "tags": [ + "me.insights.usedInsight" + ], + "summary": "Get used from me", + "operationId": "me.insights.GetUsed", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastUsed", + "resourceVisualization", + "resourceReference", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.insights.usedInsight" + ], + "summary": "Update the navigation property used in me", + "operationId": "me.insights.UpdateUsed", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.usedInsight" + ], + "summary": "Delete navigation property used for me", + "operationId": "me.insights.DeleteUsed", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/used/{usedInsight-id}/resource": { + "get": { + "tags": [ + "me.insights.used.entity" + ], + "summary": "Get resource from me", + "operationId": "me.insights.used.GetResource", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/used/{usedInsight-id}/resource/$ref": { + "get": { + "tags": [ + "me.insights.used.entity" + ], + "summary": "Get ref of resource from me", + "operationId": "me.insights.used.GetRefResource", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.insights.used.entity" + ], + "summary": "Update the ref of navigation property resource in me", + "operationId": "me.insights.used.UpdateRefResource", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.insights.used.entity" + ], + "summary": "Delete ref of navigation property resource for me", + "operationId": "me.insights.used.DeleteRefResource", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "me.insights.used.resource.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action commit", + "operationId": "me.insights.used.resource.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "me.insights.used.resource.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.used.resource.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assign", + "operationId": "me.insights.used.resource.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/me/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/me/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "me.insights.used.resource.Range.boundingRect", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function cell", + "operationId": "me.insights.used.resource.Range.cell", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})", + "/me/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.used.resource.Range.clear", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/column(column={column})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function column", + "operationId": "me.insights.used.resource.Range.column", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})", + "/me/insights/trending/{trending-id}/resource/Range/column(column={column})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "me.insights.used.resource.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "me.insights.used.resource.Range.columnsAfter-0669", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/me/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsAfter()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "me.insights.used.resource.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "me.insights.used.resource.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/me/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/columnsBefore()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/delete": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action delete", + "operationId": "me.insights.used.resource.Range.delete", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/me/insights/shared/{sharedInsight-id}/resource/Range/delete", + "/me/insights/trending/{trending-id}/resource/Range/delete" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/entireColumn()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "me.insights.used.resource.Range.entireColumn", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()", + "/me/insights/trending/{trending-id}/resource/Range/entireColumn()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/entireRow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "me.insights.used.resource.Range.entireRow", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/entireRow()", + "/me/insights/trending/{trending-id}/resource/Range/entireRow()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/insert": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action insert", + "operationId": "me.insights.used.resource.Range.insert", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/me/insights/shared/{sharedInsight-id}/resource/Range/insert", + "/me/insights/trending/{trending-id}/resource/Range/insert" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "me.insights.used.resource.Range.intersection", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/me/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/lastCell()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "me.insights.used.resource.Range.lastCell", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastCell()", + "/me/insights/trending/{trending-id}/resource/Range/lastCell()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/lastColumn()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "me.insights.used.resource.Range.lastColumn", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()", + "/me/insights/trending/{trending-id}/resource/Range/lastColumn()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/lastRow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "me.insights.used.resource.Range.lastRow", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/lastRow()", + "/me/insights/trending/{trending-id}/resource/Range/lastRow()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/merge": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action merge", + "operationId": "me.insights.used.resource.Range.merge", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/me/insights/shared/{sharedInsight-id}/resource/Range/merge", + "/me/insights/trending/{trending-id}/resource/Range/merge" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "me.insights.used.resource.Range.offsetRange", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/me/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "me.insights.used.resource.Range.resizedRange", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/me/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/row(row={row})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function row", + "operationId": "me.insights.used.resource.Range.row", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})", + "/me/insights/trending/{trending-id}/resource/Range/row(row={row})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "me.insights.used.resource.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "me.insights.used.resource.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/me/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsAbove()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "me.insights.used.resource.Range.rowsBelow-2035", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "me.insights.used.resource.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/me/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/me/insights/used/{usedInsight-id}/resource/Range/rowsBelow()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/unmerge": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "me.insights.used.resource.Range.unmerge", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/me/insights/shared/{sharedInsight-id}/resource/Range/unmerge", + "/me/insights/trending/{trending-id}/resource/Range/unmerge" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "me.insights.used.resource.Range.usedRange-5ff6", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "me.insights.used.resource.Range.usedRange-63c8", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/trending/{trending-id}/resource/Range/usedRange()", + "/me/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/me/insights/used/{usedInsight-id}/resource/Range/usedRange()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/Range/visibleView()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "me.insights.used.resource.Range.visibleView", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/me/insights/shared/{sharedInsight-id}/resource/Range/visibleView()", + "/me/insights/trending/{trending-id}/resource/Range/visibleView()" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/RangeFill/clear": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action clear", + "operationId": "me.insights.used.resource.RangeFill.clear", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/me/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/me/insights/trending/{trending-id}/resource/Range/clear", + "/me/insights/trending/{trending-id}/resource/RangeFill/clear", + "/me/insights/used/{usedInsight-id}/resource/Range/clear" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "me.insights.used.resource.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns", + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "me.insights.used.resource.RangeFormat.autofitRows", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows", + "/me/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows", + "/me/insights/trending/{trending-id}/resource/RangeFormat/autofitRows" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/RangeSort/apply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action apply", + "operationId": "me.insights.used.resource.RangeSort.apply", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply", + "/me/insights/shared/{sharedInsight-id}/resource/RangeSort/apply", + "/me/insights/trending/{trending-id}/resource/RangeSort/apply" + ] + }, + "/me/insights/used/{usedInsight-id}/resource/RangeView/range()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function range", + "operationId": "me.insights.used.resource.RangeView.range", + "parameters": [ + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()", + "/me/insights/shared/{sharedInsight-id}/resource/RangeView/range()", + "/me/insights/trending/{trending-id}/resource/RangeView/range()" + ] + }, + "/me/licenseDetails": { + "get": { + "tags": [ + "me.licenseDetails" + ], + "summary": "Get licenseDetails from me", + "operationId": "me.ListLicenseDetails", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "servicePlans", + "servicePlans desc", + "skuId", + "skuId desc", + "skuPartNumber", + "skuPartNumber desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "servicePlans", + "skuId", + "skuPartNumber" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of licenseDetails", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.licenseDetails" + ], + "summary": "Create new navigation property to licenseDetails for me", + "operationId": "me.CreateLicenseDetails", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/licenseDetails/{licenseDetails-id}": { + "get": { + "tags": [ + "me.licenseDetails" + ], + "summary": "Get licenseDetails from me", + "operationId": "me.GetLicenseDetails", + "parameters": [ + { + "name": "licenseDetails-id", + "in": "path", + "description": "key: id of licenseDetails", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "licenseDetails" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "servicePlans", + "skuId", + "skuPartNumber" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.licenseDetails" + ], + "summary": "Update the navigation property licenseDetails in me", + "operationId": "me.UpdateLicenseDetails", + "parameters": [ + { + "name": "licenseDetails-id", + "in": "path", + "description": "key: id of licenseDetails", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "licenseDetails" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.licenseDetails" + ], + "summary": "Delete navigation property licenseDetails for me", + "operationId": "me.DeleteLicenseDetails", + "parameters": [ + { + "name": "licenseDetails-id", + "in": "path", + "description": "key: id of licenseDetails", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "licenseDetails" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders": { + "get": { + "tags": [ + "me.mailFolder" + ], + "summary": "Get mailFolders from me", + "operationId": "me.ListMailFolders", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "parentFolderId", + "parentFolderId desc", + "childFolderCount", + "childFolderCount desc", + "unreadItemCount", + "unreadItemCount desc", + "totalItemCount", + "totalItemCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mailFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolder" + ], + "summary": "Create new navigation property to mailFolders for me", + "operationId": "me.CreateMailFolders", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}": { + "get": { + "tags": [ + "me.mailFolder" + ], + "summary": "Get mailFolders from me", + "operationId": "me.GetMailFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolder" + ], + "summary": "Update the navigation property mailFolders in me", + "operationId": "me.UpdateMailFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolder" + ], + "summary": "Delete navigation property mailFolders for me", + "operationId": "me.DeleteMailFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/childFolders": { + "get": { + "tags": [ + "me.mailFolders.mailFolder" + ], + "summary": "Get childFolders from me", + "operationId": "me.mailFolders.ListChildFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "parentFolderId", + "parentFolderId desc", + "childFolderCount", + "childFolderCount desc", + "unreadItemCount", + "unreadItemCount desc", + "totalItemCount", + "totalItemCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mailFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.mailFolder" + ], + "summary": "Create new navigation property to childFolders for me", + "operationId": "me.mailFolders.CreateChildFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}": { + "get": { + "tags": [ + "me.mailFolders.mailFolder" + ], + "summary": "Get childFolders from me", + "operationId": "me.mailFolders.GetChildFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.mailFolder" + ], + "summary": "Update the navigation property childFolders in me", + "operationId": "me.mailFolders.UpdateChildFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.mailFolder" + ], + "summary": "Delete navigation property childFolders for me", + "operationId": "me.mailFolders.DeleteChildFolders", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copy", + "operationId": "me.mailFolders.childFolders.copy", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "/me/mailFolders/{mailFolder-id}/copy", + "/me/messages/{message-id}/copy" + ] + }, + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action move", + "operationId": "me.mailFolders.childFolders.move", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "/me/mailFolders/{mailFolder-id}/move", + "/me/messages/{message-id}/move" + ] + }, + "/me/mailFolders/{mailFolder-id}/childFolders/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.mailFolders.childFolders.delta", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/mailFolders/{mailFolder-id}/messageRules": { + "get": { + "tags": [ + "me.mailFolders.messageRule" + ], + "summary": "Get messageRules from me", + "operationId": "me.mailFolders.ListMessageRules", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "sequence", + "sequence desc", + "conditions", + "conditions desc", + "actions", + "actions desc", + "exceptions", + "exceptions desc", + "isEnabled", + "isEnabled desc", + "hasError", + "hasError desc", + "isReadOnly", + "isReadOnly desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "sequence", + "conditions", + "actions", + "exceptions", + "isEnabled", + "hasError", + "isReadOnly" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of messageRule", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.messageRule" + ], + "summary": "Create new navigation property to messageRules for me", + "operationId": "me.mailFolders.CreateMessageRules", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}": { + "get": { + "tags": [ + "me.mailFolders.messageRule" + ], + "summary": "Get messageRules from me", + "operationId": "me.mailFolders.GetMessageRules", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "messageRule-id", + "in": "path", + "description": "key: id of messageRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "messageRule" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "sequence", + "conditions", + "actions", + "exceptions", + "isEnabled", + "hasError", + "isReadOnly" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.messageRule" + ], + "summary": "Update the navigation property messageRules in me", + "operationId": "me.mailFolders.UpdateMessageRules", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "messageRule-id", + "in": "path", + "description": "key: id of messageRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "messageRule" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.messageRule" + ], + "summary": "Delete navigation property messageRules for me", + "operationId": "me.mailFolders.DeleteMessageRules", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "messageRule-id", + "in": "path", + "description": "key: id of messageRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "messageRule" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/messages": { + "get": { + "tags": [ + "me.mailFolders.message" + ], + "summary": "Get messages from me", + "operationId": "me.mailFolders.ListMessages", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "receivedDateTime", + "receivedDateTime desc", + "sentDateTime", + "sentDateTime desc", + "hasAttachments", + "hasAttachments desc", + "internetMessageId", + "internetMessageId desc", + "internetMessageHeaders", + "internetMessageHeaders desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "parentFolderId", + "parentFolderId desc", + "sender", + "sender desc", + "from", + "from desc", + "toRecipients", + "toRecipients desc", + "ccRecipients", + "ccRecipients desc", + "bccRecipients", + "bccRecipients desc", + "replyTo", + "replyTo desc", + "conversationId", + "conversationId desc", + "uniqueBody", + "uniqueBody desc", + "isDeliveryReceiptRequested", + "isDeliveryReceiptRequested desc", + "isReadReceiptRequested", + "isReadReceiptRequested desc", + "isRead", + "isRead desc", + "isDraft", + "isDraft desc", + "webLink", + "webLink desc", + "inferenceClassification", + "inferenceClassification desc", + "flag", + "flag desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of message", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.message" + ], + "summary": "Create new navigation property to messages for me", + "operationId": "me.mailFolders.CreateMessages", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}": { + "get": { + "tags": [ + "me.mailFolders.message" + ], + "summary": "Get messages from me", + "operationId": "me.mailFolders.GetMessages", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.message" + ], + "summary": "Update the navigation property messages in me", + "operationId": "me.mailFolders.UpdateMessages", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.message" + ], + "summary": "Delete navigation property messages for me", + "operationId": "me.mailFolders.DeleteMessages", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/attachments": { + "get": { + "tags": [ + "me.mailFolders.messages.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.mailFolders.messages.ListAttachments", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.messages.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.mailFolders.messages.CreateAttachments", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/attachments" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.mailFolders.messages.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.mailFolders.messages.GetAttachments", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.messages.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.mailFolders.messages.UpdateAttachments", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.messages.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.mailFolders.messages.DeleteAttachments", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/attachments/{attachment-id}" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/extensions": { + "get": { + "tags": [ + "me.mailFolders.messages.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.mailFolders.messages.ListExtensions", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.messages.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.mailFolders.messages.CreateExtensions", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/extensions" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.mailFolders.messages.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.mailFolders.messages.GetExtensions", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.messages.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.mailFolders.messages.UpdateExtensions", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.messages.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.mailFolders.messages.DeleteExtensions", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/extensions/{extension-id}" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/copy": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copy", + "operationId": "me.mailFolders.messages.copy", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "/me/mailFolders/{mailFolder-id}/copy", + "/me/messages/{message-id}/copy" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/createForward": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action createForward", + "operationId": "me.mailFolders.messages.createForward", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/createForward" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/createReply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action createReply", + "operationId": "me.mailFolders.messages.createReply", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/createReply" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action createReplyAll", + "operationId": "me.mailFolders.messages.createReplyAll", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/createReplyAll" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/forward": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action forward", + "operationId": "me.mailFolders.messages.forward", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/forward" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/move": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action move", + "operationId": "me.mailFolders.messages.move", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "/me/mailFolders/{mailFolder-id}/move", + "/me/messages/{message-id}/move" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/reply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action reply", + "operationId": "me.mailFolders.messages.reply", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/reply" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action replyAll", + "operationId": "me.mailFolders.messages.replyAll", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/replyAll" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/send": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action send", + "operationId": "me.mailFolders.messages.send", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/send" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.mailFolders.messages.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.mailFolders.messages.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/multiValueExtendedProperties" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.mailFolders.messages.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.mailFolders.messages.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.mailFolders.messages.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.mailFolders.messages.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.mailFolders.messages.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/singleValueExtendedProperties" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.mailFolders.messages.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.mailFolders.messages.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.mailFolders.messages.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/mailFolders/{mailFolder-id}/messages/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.mailFolders.messages.delta", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/delta()", + "/me/messages/delta()" + ] + }, + "/me/mailFolders/{mailFolder-id}/copy": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copy", + "operationId": "me.mailFolders.copy", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "/me/messages/{message-id}/copy" + ] + }, + "/me/mailFolders/{mailFolder-id}/move": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action move", + "operationId": "me.mailFolders.move", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "/me/messages/{message-id}/move" + ] + }, + "/me/mailFolders/{mailFolder-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.mailFolders.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.mailFolders.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.mailFolders.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.mailFolders.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.mailFolders.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.mailFolders.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.mailFolders.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.mailFolders.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.mailFolders.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.mailFolders.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/mailFolders/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.mailFolders.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/messages/delta()" + ] + }, + "/me/managedAppRegistrations": { + "get": { + "tags": [ + "me.managedAppRegistration" + ], + "summary": "Get managedAppRegistrations from me", + "operationId": "me.ListManagedAppRegistrations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "applicationVersion", + "applicationVersion desc", + "managementSdkVersion", + "managementSdkVersion desc", + "platformVersion", + "platformVersion desc", + "deviceType", + "deviceType desc", + "deviceTag", + "deviceTag desc", + "deviceName", + "deviceName desc", + "flaggedReasons", + "flaggedReasons desc", + "userId", + "userId desc", + "appIdentifier", + "appIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastSyncDateTime", + "applicationVersion", + "managementSdkVersion", + "platformVersion", + "deviceType", + "deviceTag", + "deviceName", + "flaggedReasons", + "userId", + "appIdentifier", + "version", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppRegistration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedAppRegistrations/$ref": { + "get": { + "tags": [ + "me.managedAppRegistration" + ], + "summary": "Get ref of managedAppRegistrations from me", + "operationId": "me.ListRefManagedAppRegistrations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "applicationVersion", + "applicationVersion desc", + "managementSdkVersion", + "managementSdkVersion desc", + "platformVersion", + "platformVersion desc", + "deviceType", + "deviceType desc", + "deviceTag", + "deviceTag desc", + "deviceName", + "deviceName desc", + "flaggedReasons", + "flaggedReasons desc", + "userId", + "userId desc", + "appIdentifier", + "appIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of managedAppRegistration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.managedAppRegistration" + ], + "summary": "Create new navigation property ref to managedAppRegistrations for me", + "operationId": "me.CreateRefManagedAppRegistrations", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function getUserIdsWithFlaggedAppRegistration", + "operationId": "me.managedAppRegistrations.getUserIdsWithFlaggedAppRegistration", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/managedDevices": { + "get": { + "tags": [ + "me.managedDevice" + ], + "summary": "Get managedDevices from me", + "operationId": "me.ListManagedDevices", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userId", + "userId desc", + "deviceName", + "deviceName desc", + "managedDeviceOwnerType", + "managedDeviceOwnerType desc", + "deviceActionResults", + "deviceActionResults desc", + "enrolledDateTime", + "enrolledDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "operatingSystem", + "operatingSystem desc", + "complianceState", + "complianceState desc", + "jailBroken", + "jailBroken desc", + "managementAgent", + "managementAgent desc", + "osVersion", + "osVersion desc", + "easActivated", + "easActivated desc", + "easDeviceId", + "easDeviceId desc", + "easActivationDateTime", + "easActivationDateTime desc", + "azureADRegistered", + "azureADRegistered desc", + "deviceEnrollmentType", + "deviceEnrollmentType desc", + "activationLockBypassCode", + "activationLockBypassCode desc", + "emailAddress", + "emailAddress desc", + "azureADDeviceId", + "azureADDeviceId desc", + "deviceRegistrationState", + "deviceRegistrationState desc", + "deviceCategoryDisplayName", + "deviceCategoryDisplayName desc", + "isSupervised", + "isSupervised desc", + "exchangeLastSuccessfulSyncDateTime", + "exchangeLastSuccessfulSyncDateTime desc", + "exchangeAccessState", + "exchangeAccessState desc", + "exchangeAccessStateReason", + "exchangeAccessStateReason desc", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionUrl desc", + "remoteAssistanceSessionErrorDetails", + "remoteAssistanceSessionErrorDetails desc", + "isEncrypted", + "isEncrypted desc", + "userPrincipalName", + "userPrincipalName desc", + "model", + "model desc", + "manufacturer", + "manufacturer desc", + "imei", + "imei desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "serialNumber", + "serialNumber desc", + "phoneNumber", + "phoneNumber desc", + "androidSecurityPatchLevel", + "androidSecurityPatchLevel desc", + "userDisplayName", + "userDisplayName desc", + "configurationManagerClientEnabledFeatures", + "configurationManagerClientEnabledFeatures desc", + "wiFiMacAddress", + "wiFiMacAddress desc", + "deviceHealthAttestationState", + "deviceHealthAttestationState desc", + "subscriberCarrier", + "subscriberCarrier desc", + "meid", + "meid desc", + "totalStorageSpaceInBytes", + "totalStorageSpaceInBytes desc", + "freeStorageSpaceInBytes", + "freeStorageSpaceInBytes desc", + "managedDeviceName", + "managedDeviceName desc", + "partnerReportedThreatState", + "partnerReportedThreatState desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDevice", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.managedDevice" + ], + "summary": "Create new navigation property to managedDevices for me", + "operationId": "me.CreateManagedDevices", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}": { + "get": { + "tags": [ + "me.managedDevice" + ], + "summary": "Get managedDevices from me", + "operationId": "me.GetManagedDevices", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.managedDevice" + ], + "summary": "Update the navigation property managedDevices in me", + "operationId": "me.UpdateManagedDevices", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.managedDevice" + ], + "summary": "Delete navigation property managedDevices for me", + "operationId": "me.DeleteManagedDevices", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}/deviceCategory": { + "get": { + "tags": [ + "me.managedDevices.deviceCategory" + ], + "summary": "Get deviceCategory from me", + "operationId": "me.managedDevices.GetDeviceCategory", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.managedDevices.deviceCategory" + ], + "summary": "Update the navigation property deviceCategory in me", + "operationId": "me.managedDevices.UpdateDeviceCategory", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.managedDevices.deviceCategory" + ], + "summary": "Delete navigation property deviceCategory for me", + "operationId": "me.managedDevices.DeleteDeviceCategory", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": { + "get": { + "tags": [ + "me.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Get deviceCompliancePolicyStates from me", + "operationId": "me.managedDevices.ListDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingStates", + "settingStates desc", + "displayName", + "displayName desc", + "version", + "version desc", + "platformType", + "platformType desc", + "state", + "state desc", + "settingCount", + "settingCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCompliancePolicyState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Create new navigation property to deviceCompliancePolicyStates for me", + "operationId": "me.managedDevices.CreateDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": { + "get": { + "tags": [ + "me.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Get deviceCompliancePolicyStates from me", + "operationId": "me.managedDevices.GetDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Update the navigation property deviceCompliancePolicyStates in me", + "operationId": "me.managedDevices.UpdateDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Delete navigation property deviceCompliancePolicyStates for me", + "operationId": "me.managedDevices.DeleteDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}/deviceConfigurationStates": { + "get": { + "tags": [ + "me.managedDevices.deviceConfigurationState" + ], + "summary": "Get deviceConfigurationStates from me", + "operationId": "me.managedDevices.ListDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingStates", + "settingStates desc", + "displayName", + "displayName desc", + "version", + "version desc", + "platformType", + "platformType desc", + "state", + "state desc", + "settingCount", + "settingCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfigurationState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.managedDevices.deviceConfigurationState" + ], + "summary": "Create new navigation property to deviceConfigurationStates for me", + "operationId": "me.managedDevices.CreateDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": { + "get": { + "tags": [ + "me.managedDevices.deviceConfigurationState" + ], + "summary": "Get deviceConfigurationStates from me", + "operationId": "me.managedDevices.GetDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.managedDevices.deviceConfigurationState" + ], + "summary": "Update the navigation property deviceConfigurationStates in me", + "operationId": "me.managedDevices.UpdateDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.managedDevices.deviceConfigurationState" + ], + "summary": "Delete navigation property deviceConfigurationStates for me", + "operationId": "me.managedDevices.DeleteDeviceConfigurationStates", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/managedDevices/{managedDevice-id}/bypassActivationLock": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action bypassActivationLock", + "operationId": "me.managedDevices.bypassActivationLock", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/cleanWindowsDevice": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action cleanWindowsDevice", + "operationId": "me.managedDevices.cleanWindowsDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "keepUserData": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action deleteUserFromSharedAppleDevice", + "operationId": "me.managedDevices.deleteUserFromSharedAppleDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "userPrincipalName": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/disableLostMode": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action disableLostMode", + "operationId": "me.managedDevices.disableLostMode", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/locateDevice": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action locateDevice", + "operationId": "me.managedDevices.locateDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action logoutSharedAppleDeviceActiveUser", + "operationId": "me.managedDevices.logoutSharedAppleDeviceActiveUser", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/rebootNow": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action rebootNow", + "operationId": "me.managedDevices.rebootNow", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/recoverPasscode": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action recoverPasscode", + "operationId": "me.managedDevices.recoverPasscode", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/remoteLock": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action remoteLock", + "operationId": "me.managedDevices.remoteLock", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/requestRemoteAssistance": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action requestRemoteAssistance", + "operationId": "me.managedDevices.requestRemoteAssistance", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/resetPasscode": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action resetPasscode", + "operationId": "me.managedDevices.resetPasscode", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/retire": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action retire", + "operationId": "me.managedDevices.retire", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/shutDown": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action shutDown", + "operationId": "me.managedDevices.shutDown", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/syncDevice": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action syncDevice", + "operationId": "me.managedDevices.syncDevice", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action updateWindowsDeviceAccount", + "operationId": "me.managedDevices.updateWindowsDeviceAccount", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "updateWindowsDeviceAccountActionParameter": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.updateWindowsDeviceAccountActionParameter" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/windowsDefenderScan": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action windowsDefenderScan", + "operationId": "me.managedDevices.windowsDefenderScan", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "quickScan": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action windowsDefenderUpdateSignatures", + "operationId": "me.managedDevices.windowsDefenderUpdateSignatures", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/managedDevices/{managedDevice-id}/wipe": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action wipe", + "operationId": "me.managedDevices.wipe", + "parameters": [ + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "keepEnrollmentData": { + "type": "boolean", + "default": false, + "nullable": true + }, + "keepUserData": { + "type": "boolean", + "default": false, + "nullable": true + }, + "macOsUnlockCode": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/manager": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get manager from me", + "operationId": "me.GetManager", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/manager/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of manager from me", + "operationId": "me.GetRefManager", + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.directoryObject" + ], + "summary": "Update the ref of navigation property manager in me", + "operationId": "me.UpdateRefManager", + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.directoryObject" + ], + "summary": "Delete ref of navigation property manager for me", + "operationId": "me.DeleteRefManager", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/memberOf": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get memberOf from me", + "operationId": "me.ListMemberOf", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/memberOf/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of memberOf from me", + "operationId": "me.ListRefMemberOf", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.directoryObject" + ], + "summary": "Create new navigation property ref to memberOf for me", + "operationId": "me.CreateRefMemberOf", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/messages": { + "get": { + "tags": [ + "me.message" + ], + "summary": "Get messages from me", + "operationId": "me.ListMessages", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "receivedDateTime", + "receivedDateTime desc", + "sentDateTime", + "sentDateTime desc", + "hasAttachments", + "hasAttachments desc", + "internetMessageId", + "internetMessageId desc", + "internetMessageHeaders", + "internetMessageHeaders desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "parentFolderId", + "parentFolderId desc", + "sender", + "sender desc", + "from", + "from desc", + "toRecipients", + "toRecipients desc", + "ccRecipients", + "ccRecipients desc", + "bccRecipients", + "bccRecipients desc", + "replyTo", + "replyTo desc", + "conversationId", + "conversationId desc", + "uniqueBody", + "uniqueBody desc", + "isDeliveryReceiptRequested", + "isDeliveryReceiptRequested desc", + "isReadReceiptRequested", + "isReadReceiptRequested desc", + "isRead", + "isRead desc", + "isDraft", + "isDraft desc", + "webLink", + "webLink desc", + "inferenceClassification", + "inferenceClassification desc", + "flag", + "flag desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of message", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.message" + ], + "summary": "Create new navigation property to messages for me", + "operationId": "me.CreateMessages", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/messages/{message-id}": { + "get": { + "tags": [ + "me.message" + ], + "summary": "Get messages from me", + "operationId": "me.GetMessages", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.message" + ], + "summary": "Update the navigation property messages in me", + "operationId": "me.UpdateMessages", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.message" + ], + "summary": "Delete navigation property messages for me", + "operationId": "me.DeleteMessages", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/messages/{message-id}/attachments": { + "get": { + "tags": [ + "me.messages.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.messages.ListAttachments", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.messages.attachment" + ], + "summary": "Create new navigation property to attachments for me", + "operationId": "me.messages.CreateAttachments", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/attachments" + ] + }, + "/me/messages/{message-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "me.messages.attachment" + ], + "summary": "Get attachments from me", + "operationId": "me.messages.GetAttachments", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.messages.attachment" + ], + "summary": "Update the navigation property attachments in me", + "operationId": "me.messages.UpdateAttachments", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.messages.attachment" + ], + "summary": "Delete navigation property attachments for me", + "operationId": "me.messages.DeleteAttachments", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}" + ] + }, + "/me/messages/{message-id}/extensions": { + "get": { + "tags": [ + "me.messages.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.messages.ListExtensions", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.messages.extension" + ], + "summary": "Create new navigation property to extensions for me", + "operationId": "me.messages.CreateExtensions", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/extensions" + ] + }, + "/me/messages/{message-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "me.messages.extension" + ], + "summary": "Get extensions from me", + "operationId": "me.messages.GetExtensions", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.messages.extension" + ], + "summary": "Update the navigation property extensions in me", + "operationId": "me.messages.UpdateExtensions", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.messages.extension" + ], + "summary": "Delete navigation property extensions for me", + "operationId": "me.messages.DeleteExtensions", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}" + ] + }, + "/me/messages/{message-id}/copy": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copy", + "operationId": "me.messages.copy", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "/me/mailFolders/{mailFolder-id}/copy" + ] + }, + "/me/messages/{message-id}/createForward": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action createForward", + "operationId": "me.messages.createForward", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/createForward" + ] + }, + "/me/messages/{message-id}/createReply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action createReply", + "operationId": "me.messages.createReply", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/createReply" + ] + }, + "/me/messages/{message-id}/createReplyAll": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action createReplyAll", + "operationId": "me.messages.createReplyAll", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll" + ] + }, + "/me/messages/{message-id}/forward": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action forward", + "operationId": "me.messages.forward", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/forward" + ] + }, + "/me/messages/{message-id}/move": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action move", + "operationId": "me.messages.move", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "/me/mailFolders/{mailFolder-id}/move" + ] + }, + "/me/messages/{message-id}/reply": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action reply", + "operationId": "me.messages.reply", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/reply" + ] + }, + "/me/messages/{message-id}/replyAll": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action replyAll", + "operationId": "me.messages.replyAll", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll" + ] + }, + "/me/messages/{message-id}/send": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action send", + "operationId": "me.messages.send", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/send" + ] + }, + "/me/messages/{message-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "me.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.messages.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for me", + "operationId": "me.messages.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties" + ] + }, + "/me/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from me", + "operationId": "me.messages.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in me", + "operationId": "me.messages.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for me", + "operationId": "me.messages.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/me/messages/{message-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "me.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.messages.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for me", + "operationId": "me.messages.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties" + ] + }, + "/me/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "me.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from me", + "operationId": "me.messages.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in me", + "operationId": "me.messages.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for me", + "operationId": "me.messages.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/me/messages/delta()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function delta", + "operationId": "me.messages.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/calendar/calendarView/{event-id}/instances/delta()", + "/me/calendar/calendarView/delta()", + "/me/calendar/events/{event-id}/instances/delta()", + "/me/calendar/events/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/me/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/calendarView/delta()", + "/me/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/me/calendars/{calendar-id}/events/delta()", + "/me/calendarView/{event-id}/calendar/calendarView/delta()", + "/me/calendarView/{event-id}/calendar/events/delta()", + "/me/calendarView/{event-id}/instances/delta()", + "/me/calendarView/delta()", + "/me/contactFolders/{contactFolder-id}/childFolders/delta()", + "/me/contactFolders/{contactFolder-id}/contacts/delta()", + "/me/contactFolders/delta()", + "/me/contacts/delta()", + "/me/events/{event-id}/calendar/calendarView/delta()", + "/me/events/{event-id}/calendar/events/delta()", + "/me/events/{event-id}/instances/delta()", + "/me/events/delta()", + "/me/mailFolders/{mailFolder-id}/childFolders/delta()", + "/me/mailFolders/{mailFolder-id}/messages/delta()", + "/me/mailFolders/delta()" + ] + }, + "/me/assignLicense": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action assignLicense", + "operationId": "me.assignLicense", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "addLicenses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedLicense" + } + }, + "removeLicenses": { + "type": "array", + "items": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/changePassword": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action changePassword", + "operationId": "me.changePassword", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "currentPassword": { + "type": "string", + "nullable": true + }, + "newPassword": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/checkMemberGroups": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "me.checkMemberGroups", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/findMeetingTimes": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action findMeetingTimes", + "operationId": "me.findMeetingTimes", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Attendees": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendeeBase" + } + ], + "nullable": true + } + }, + "LocationConstraint": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.locationConstraint" + } + ], + "nullable": true + }, + "TimeConstraint": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeConstraint" + } + ], + "nullable": true + }, + "MeetingDuration": { + "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", + "type": "string", + "format": "duration", + "nullable": true + }, + "MaxCandidates": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "IsOrganizerOptional": { + "type": "boolean", + "default": false, + "nullable": true + }, + "ReturnSuggestionReasons": { + "type": "boolean", + "default": false, + "nullable": true + }, + "MinimumAttendeePercentage": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.meetingTimeSuggestionsResult" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/getMailTips": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action getMailTips", + "operationId": "me.getMailTips", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "EmailAddresses": { + "type": "array", + "items": { + "type": "string" + } + }, + "MailTipsOptions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailTipsType" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailTips" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/getManagedAppDiagnosticStatuses()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function getManagedAppDiagnosticStatuses", + "operationId": "me.getManagedAppDiagnosticStatuses", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDiagnosticStatus" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/getManagedAppPolicies()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function getManagedAppPolicies", + "operationId": "me.getManagedAppPolicies", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/getMemberGroups": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "me.getMemberGroups", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/getMemberObjects": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "me.getMemberObjects", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/reminderView(StartDateTime={StartDateTime},EndDateTime={EndDateTime})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function reminderView", + "operationId": "me.reminderView", + "parameters": [ + { + "name": "StartDateTime", + "in": "path", + "description": "Usage: StartDateTime={StartDateTime}", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "EndDateTime", + "in": "path", + "description": "Usage: EndDateTime={EndDateTime}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.reminder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/removeAllDevicesFromManagement": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action removeAllDevicesFromManagement", + "operationId": "me.removeAllDevicesFromManagement", + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/restore": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action restore", + "operationId": "me.restore", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/sendMail": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action sendMail", + "operationId": "me.sendMail", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Message": { + "$ref": "#/components/schemas/microsoft.graph.message" + }, + "SaveToSentItems": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/wipeManagedAppRegistrationsByDeviceTag": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action wipeManagedAppRegistrationsByDeviceTag", + "operationId": "me.wipeManagedAppRegistrationsByDeviceTag", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "deviceTag": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/onenote": { + "get": { + "tags": [ + "me.onenote" + ], + "summary": "Get onenote from me", + "operationId": "me.GetOnenote", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote" + ], + "summary": "Update the navigation property onenote in me", + "operationId": "me.UpdateOnenote", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote" + ], + "summary": "Delete navigation property onenote for me", + "operationId": "me.DeleteOnenote", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/notebooks": { + "get": { + "tags": [ + "me.onenote.notebook" + ], + "summary": "Get notebooks from me", + "operationId": "me.onenote.ListNotebooks", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "userRole", + "userRole desc", + "isShared", + "isShared desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc", + "links", + "links desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of notebook", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebook" + ], + "summary": "Create new navigation property to notebooks for me", + "operationId": "me.onenote.CreateNotebooks", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/notebooks/{notebook-id}": { + "get": { + "tags": [ + "me.onenote.notebook" + ], + "summary": "Get notebooks from me", + "operationId": "me.onenote.GetNotebooks", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebook" + ], + "summary": "Update the navigation property notebooks in me", + "operationId": "me.onenote.UpdateNotebooks", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebook" + ], + "summary": "Delete navigation property notebooks for me", + "operationId": "me.onenote.DeleteNotebooks", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/notebooks/{notebook-id}/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.notebooks.ListSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.notebooks.CreateSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.notebooks.GetSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.notebooks.UpdateSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.notebooks.DeleteSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.notebooks.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.notebooks.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.notebooks.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.notebooks.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.notebooks.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.notebooks.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.notebooks.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.notebooks.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.notebooks.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.notebooks.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.notebooks.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.notebooks.sectionGroups.ListSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.notebooks.sectionGroups.CreateSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.notebooks.sectionGroups.GetSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.notebooks.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.notebooks.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.notebooks.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.notebooks.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSection from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSection in me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSection for me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.notebooks.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.notebooks.ListSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.notebooks.CreateSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.notebooks.GetSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.notebooks.UpdateSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.notebooks.DeleteSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.notebooks.sections.copyToNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.notebooks.sections.copyToSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.notebooks.sections.ListPages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.notebooks.sections.CreatePages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.notebooks.sections.GetPages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.notebooks.sections.UpdatePages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.notebooks.sections.DeletePages", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.notebooks.sections.GetPagesContent", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.notebooks.sections.UpdatePagesContent", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.notebooks.sections.pages.copyToSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.notebooks.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.notebooks.sections.pages.preview", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.notebooks.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.notebooks.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.notebooks.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSection from me", + "operationId": "me.onenote.notebooks.sections.pages.GetParentSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSection in me", + "operationId": "me.onenote.notebooks.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSection for me", + "operationId": "me.onenote.notebooks.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.notebooks.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.notebooks.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.notebooks.sections.GetParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.notebooks.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.notebooks.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.notebooks.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.notebooks.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.notebooks.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.notebooks.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function getRecentNotebooks", + "operationId": "me.onenote.notebooks.getRecentNotebooks", + "parameters": [ + { + "name": "includePersonalNotebooks", + "in": "path", + "description": "Usage: includePersonalNotebooks={includePersonalNotebooks}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recentNotebook" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/onenote/operations": { + "get": { + "tags": [ + "me.onenote.onenoteOperation" + ], + "summary": "Get operations from me", + "operationId": "me.onenote.ListOperations", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "status", + "status desc", + "createdDateTime", + "createdDateTime desc", + "lastActionDateTime", + "lastActionDateTime desc", + "resourceLocation", + "resourceLocation desc", + "resourceId", + "resourceId desc", + "error", + "error desc", + "percentComplete", + "percentComplete desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteOperation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.onenoteOperation" + ], + "summary": "Create new navigation property to operations for me", + "operationId": "me.onenote.CreateOperations", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/operations/{onenoteOperation-id}": { + "get": { + "tags": [ + "me.onenote.onenoteOperation" + ], + "summary": "Get operations from me", + "operationId": "me.onenote.GetOperations", + "parameters": [ + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.onenoteOperation" + ], + "summary": "Update the navigation property operations in me", + "operationId": "me.onenote.UpdateOperations", + "parameters": [ + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.onenoteOperation" + ], + "summary": "Delete navigation property operations for me", + "operationId": "me.onenote.DeleteOperations", + "parameters": [ + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages": { + "get": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.ListPages", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.CreatePages", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages/{onenotePage-id}": { + "get": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.GetPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.UpdatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.DeletePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.GetPagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.onenotePage" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.UpdatePagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.pages.copyToSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.pages.onenotePatchContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.pages.preview", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.parentNotebook.sectionGroups.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.parentNotebook.sectionGroups.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.pages.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.pages.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.pages.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.pages.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.pages.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.parentNotebook.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.parentNotebook.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.pages.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.pages.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.pages.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentSection from me", + "operationId": "me.onenote.pages.GetParentSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSection in me", + "operationId": "me.onenote.pages.UpdateParentSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSection for me", + "operationId": "me.onenote.pages.DeleteParentSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/pages": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.pages.parentSection.ListPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.pages.parentSection.CreatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.pages.parentSection.GetPages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.pages.parentSection.UpdatePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.pages.parentSection.DeletePages", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.parentSection.pages.GetPagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.parentSection.pages.UpdatePagesContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.pages.parentSection.pages.copyToSection", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.pages.parentSection.pages.onenotePatchContent", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.pages.parentSection.pages.preview", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentSection.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentSection.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentSection.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentSection.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentSection.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentSection.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentSection.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentSection.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentSection.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.pages.parentSection.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/resources": { + "get": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Get resources from me", + "operationId": "me.onenote.ListResources", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "content", + "content desc", + "contentUrl", + "contentUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteResource", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Create new navigation property to resources for me", + "operationId": "me.onenote.CreateResources", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/resources/{onenoteResource-id}": { + "get": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Get resources from me", + "operationId": "me.onenote.GetResources", + "parameters": [ + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Update the navigation property resources in me", + "operationId": "me.onenote.UpdateResources", + "parameters": [ + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Delete navigation property resources for me", + "operationId": "me.onenote.DeleteResources", + "parameters": [ + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/resources/{onenoteResource-id}/content": { + "get": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Get media content for the navigation property resources from me", + "operationId": "me.onenote.GetResourcesContent", + "parameters": [ + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.onenoteResource" + ], + "summary": "Update media content for the navigation property resources in me", + "operationId": "me.onenote.UpdateResourcesContent", + "parameters": [ + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.ListSectionGroups", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.CreateSectionGroups", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.GetSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.UpdateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.DeleteSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.ListSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.CreateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.GetSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.GetPagesContent", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.UpdatePagesContent", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSection from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.GetParentSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSection in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSection for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sectionGroups.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.ListSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sectionGroups.CreateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.GetSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSection from me", + "operationId": "me.onenote.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSection in me", + "operationId": "me.onenote.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSection for me", + "operationId": "me.onenote.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sectionGroups.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/sections": { + "get": { + "tags": [ + "me.onenote.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.ListSections", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.onenoteSection" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.CreateSections", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "me.onenote.onenoteSection" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.onenoteSection" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.onenoteSection" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.sections.ListPages", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to pages for me", + "operationId": "me.onenote.sections.CreatePages", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get pages from me", + "operationId": "me.onenote.sections.GetPages", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property pages in me", + "operationId": "me.onenote.sections.UpdatePages", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property pages for me", + "operationId": "me.onenote.sections.DeletePages", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get media content for the navigation property pages from me", + "operationId": "me.onenote.sections.GetPagesContent", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update media content for the navigation property pages in me", + "operationId": "me.onenote.sections.UpdatePagesContent", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "me.onenote.sections.pages.copyToSection", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "me.onenote.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function preview", + "operationId": "me.onenote.sections.pages.preview", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/me/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Get parentSection from me", + "operationId": "me.onenote.sections.pages.GetParentSection", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSection in me", + "operationId": "me.onenote.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSection for me", + "operationId": "me.onenote.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sections.GetParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get parentNotebook from me", + "operationId": "me.onenote.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in me", + "operationId": "me.onenote.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for me", + "operationId": "me.onenote.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from me", + "operationId": "me.onenote.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in me", + "operationId": "me.onenote.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for me", + "operationId": "me.onenote.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for me", + "operationId": "me.onenote.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from me", + "operationId": "me.onenote.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in me", + "operationId": "me.onenote.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for me", + "operationId": "me.onenote.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for me", + "operationId": "me.onenote.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Get sections from me", + "operationId": "me.onenote.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in me", + "operationId": "me.onenote.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for me", + "operationId": "me.onenote.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "me.onenote.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "me.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "me.onenote.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/me/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/me/outlook": { + "get": { + "tags": [ + "me.outlookUser" + ], + "summary": "Get outlook from me", + "operationId": "me.GetOutlook", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "masterCategories" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "masterCategories" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.outlookUser" + ], + "summary": "Update the navigation property outlook in me", + "operationId": "me.UpdateOutlook", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookUser" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.outlookUser" + ], + "summary": "Delete navigation property outlook for me", + "operationId": "me.DeleteOutlook", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/outlook/masterCategories": { + "get": { + "tags": [ + "me.outlook.outlookCategory" + ], + "summary": "Get masterCategories from me", + "operationId": "me.outlook.ListMasterCategories", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "color", + "color desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "color" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of outlookCategory", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.outlook.outlookCategory" + ], + "summary": "Create new navigation property to masterCategories for me", + "operationId": "me.outlook.CreateMasterCategories", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/outlook/masterCategories/{outlookCategory-id}": { + "get": { + "tags": [ + "me.outlook.outlookCategory" + ], + "summary": "Get masterCategories from me", + "operationId": "me.outlook.GetMasterCategories", + "parameters": [ + { + "name": "outlookCategory-id", + "in": "path", + "description": "key: id of outlookCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "outlookCategory" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "color" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.outlook.outlookCategory" + ], + "summary": "Update the navigation property masterCategories in me", + "operationId": "me.outlook.UpdateMasterCategories", + "parameters": [ + { + "name": "outlookCategory-id", + "in": "path", + "description": "key: id of outlookCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "outlookCategory" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.outlook.outlookCategory" + ], + "summary": "Delete navigation property masterCategories for me", + "operationId": "me.outlook.DeleteMasterCategories", + "parameters": [ + { + "name": "outlookCategory-id", + "in": "path", + "description": "key: id of outlookCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "outlookCategory" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/outlook/supportedLanguages()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function supportedLanguages", + "operationId": "me.outlook.supportedLanguages", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.localeInfo" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/me/outlook/supportedTimeZones()": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function supportedTimeZones", + "operationId": "me.outlook.supportedTimeZones-5c4f", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.timeZoneInformation" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/outlook/supportedTimeZones(TimeZoneStandard={TimeZoneStandard})" + ] + }, + "/me/outlook/supportedTimeZones(TimeZoneStandard={TimeZoneStandard})": { + "get": { + "tags": [ + "me.Functions" + ], + "summary": "Invoke function supportedTimeZones", + "operationId": "me.outlook.supportedTimeZones-120b", + "parameters": [ + { + "name": "TimeZoneStandard", + "in": "path", + "description": "Usage: TimeZoneStandard={TimeZoneStandard}", + "required": true, + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeZoneStandard" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.timeZoneInformation" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/me/outlook/supportedTimeZones()" + ] + }, + "/me/ownedDevices": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ownedDevices from me", + "operationId": "me.ListOwnedDevices", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/ownedDevices/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of ownedDevices from me", + "operationId": "me.ListRefOwnedDevices", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.directoryObject" + ], + "summary": "Create new navigation property ref to ownedDevices for me", + "operationId": "me.CreateRefOwnedDevices", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/ownedObjects": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ownedObjects from me", + "operationId": "me.ListOwnedObjects", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/ownedObjects/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of ownedObjects from me", + "operationId": "me.ListRefOwnedObjects", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.directoryObject" + ], + "summary": "Create new navigation property ref to ownedObjects for me", + "operationId": "me.CreateRefOwnedObjects", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/people": { + "get": { + "tags": [ + "me.person" + ], + "summary": "Get people from me", + "operationId": "me.ListPeople", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "surname", + "surname desc", + "birthday", + "birthday desc", + "personNotes", + "personNotes desc", + "isFavorite", + "isFavorite desc", + "scoredEmailAddresses", + "scoredEmailAddresses desc", + "phones", + "phones desc", + "postalAddresses", + "postalAddresses desc", + "websites", + "websites desc", + "jobTitle", + "jobTitle desc", + "companyName", + "companyName desc", + "yomiCompany", + "yomiCompany desc", + "department", + "department desc", + "officeLocation", + "officeLocation desc", + "profession", + "profession desc", + "personType", + "personType desc", + "userPrincipalName", + "userPrincipalName desc", + "imAddress", + "imAddress desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "givenName", + "surname", + "birthday", + "personNotes", + "isFavorite", + "scoredEmailAddresses", + "phones", + "postalAddresses", + "websites", + "jobTitle", + "companyName", + "yomiCompany", + "department", + "officeLocation", + "profession", + "personType", + "userPrincipalName", + "imAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of person", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.person" + ], + "summary": "Create new navigation property to people for me", + "operationId": "me.CreatePeople", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/people/{person-id}": { + "get": { + "tags": [ + "me.person" + ], + "summary": "Get people from me", + "operationId": "me.GetPeople", + "parameters": [ + { + "name": "person-id", + "in": "path", + "description": "key: id of person", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "person" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "givenName", + "surname", + "birthday", + "personNotes", + "isFavorite", + "scoredEmailAddresses", + "phones", + "postalAddresses", + "websites", + "jobTitle", + "companyName", + "yomiCompany", + "department", + "officeLocation", + "profession", + "personType", + "userPrincipalName", + "imAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.person" + ], + "summary": "Update the navigation property people in me", + "operationId": "me.UpdatePeople", + "parameters": [ + { + "name": "person-id", + "in": "path", + "description": "key: id of person", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "person" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.person" + ], + "summary": "Delete navigation property people for me", + "operationId": "me.DeletePeople", + "parameters": [ + { + "name": "person-id", + "in": "path", + "description": "key: id of person", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "person" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/photo": { + "get": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Get photo from me", + "operationId": "me.GetPhoto", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Update the navigation property photo in me", + "operationId": "me.UpdatePhoto", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Delete navigation property photo for me", + "operationId": "me.DeletePhoto", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/photo/$value": { + "get": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from me", + "operationId": "me.GetPhotoContent", + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in me", + "operationId": "me.UpdatePhotoContent", + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/photos": { + "get": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Get photos from me", + "operationId": "me.ListPhotos", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "height", + "height desc", + "width", + "width desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of profilePhoto", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Create new navigation property to photos for me", + "operationId": "me.CreatePhotos", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/photos/{profilePhoto-id}": { + "get": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Get photos from me", + "operationId": "me.GetPhotos", + "parameters": [ + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Update the navigation property photos in me", + "operationId": "me.UpdatePhotos", + "parameters": [ + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Delete navigation property photos for me", + "operationId": "me.DeletePhotos", + "parameters": [ + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/photos/{profilePhoto-id}/$value": { + "get": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Get media content for the navigation property photos from me", + "operationId": "me.GetPhotosContent", + "parameters": [ + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "me.profilePhoto" + ], + "summary": "Update media content for the navigation property photos in me", + "operationId": "me.UpdatePhotosContent", + "parameters": [ + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/planner": { + "get": { + "tags": [ + "me.plannerUser" + ], + "summary": "Get planner from me", + "operationId": "me.GetPlanner", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "tasks", + "plans" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "plans" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.plannerUser" + ], + "summary": "Update the navigation property planner in me", + "operationId": "me.UpdatePlanner", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerUser" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.plannerUser" + ], + "summary": "Delete navigation property planner for me", + "operationId": "me.DeletePlanner", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/planner/plans": { + "get": { + "tags": [ + "me.planner.plannerPlan" + ], + "summary": "Get plans from me", + "operationId": "me.planner.ListPlans", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "owner", + "title", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/planner/plans/$ref": { + "get": { + "tags": [ + "me.planner.plannerPlan" + ], + "summary": "Get ref of plans from me", + "operationId": "me.planner.ListRefPlans", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.planner.plannerPlan" + ], + "summary": "Create new navigation property ref to plans for me", + "operationId": "me.planner.CreateRefPlans", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/planner/tasks": { + "get": { + "tags": [ + "me.planner.plannerTask" + ], + "summary": "Get tasks from me", + "operationId": "me.planner.ListTasks", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "planId", + "bucketId", + "title", + "orderHint", + "assigneePriority", + "percentComplete", + "startDateTime", + "createdDateTime", + "dueDateTime", + "hasDescription", + "previewType", + "completedDateTime", + "completedBy", + "referenceCount", + "checklistItemCount", + "activeChecklistItemCount", + "appliedCategories", + "assignments", + "conversationThreadId", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/planner/tasks/$ref": { + "get": { + "tags": [ + "me.planner.plannerTask" + ], + "summary": "Get ref of tasks from me", + "operationId": "me.planner.ListRefTasks", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.planner.plannerTask" + ], + "summary": "Create new navigation property ref to tasks for me", + "operationId": "me.planner.CreateRefTasks", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/registeredDevices": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get registeredDevices from me", + "operationId": "me.ListRegisteredDevices", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/registeredDevices/$ref": { + "get": { + "tags": [ + "me.directoryObject" + ], + "summary": "Get ref of registeredDevices from me", + "operationId": "me.ListRefRegisteredDevices", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "me.directoryObject" + ], + "summary": "Create new navigation property ref to registeredDevices for me", + "operationId": "me.CreateRefRegisteredDevices", + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/settings": { + "get": { + "tags": [ + "me.userSettings" + ], + "summary": "Get settings from me", + "operationId": "me.GetSettings", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "contributionToContentDiscoveryDisabled", + "contributionToContentDiscoveryAsOrganizationDisabled" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userSettings" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "me.userSettings" + ], + "summary": "Update the navigation property settings in me", + "operationId": "me.UpdateSettings", + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userSettings" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "me.userSettings" + ], + "summary": "Delete navigation property settings for me", + "operationId": "me.DeleteSettings", + "parameters": [ + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/organization": { + "get": { + "tags": [ + "organization.organization" + ], + "summary": "Get entities from organization", + "operationId": "organization.organization.ListOrganization", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "city", + "city desc", + "country", + "country desc", + "countryLetterCode", + "countryLetterCode desc", + "displayName", + "displayName desc", + "marketingNotificationEmails", + "marketingNotificationEmails desc", + "onPremisesLastSyncDateTime", + "onPremisesLastSyncDateTime desc", + "onPremisesSyncEnabled", + "onPremisesSyncEnabled desc", + "postalCode", + "postalCode desc", + "preferredLanguage", + "preferredLanguage desc", + "privacyProfile", + "privacyProfile desc", + "provisionedPlans", + "provisionedPlans desc", + "securityComplianceNotificationMails", + "securityComplianceNotificationMails desc", + "securityComplianceNotificationPhones", + "securityComplianceNotificationPhones desc", + "state", + "state desc", + "street", + "street desc", + "technicalNotificationMails", + "technicalNotificationMails desc", + "verifiedDomains", + "verifiedDomains desc", + "mobileDeviceManagementAuthority", + "mobileDeviceManagementAuthority desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "assignedPlans", + "businessPhones", + "city", + "country", + "countryLetterCode", + "displayName", + "marketingNotificationEmails", + "onPremisesLastSyncDateTime", + "onPremisesSyncEnabled", + "postalCode", + "preferredLanguage", + "privacyProfile", + "provisionedPlans", + "securityComplianceNotificationMails", + "securityComplianceNotificationPhones", + "state", + "street", + "technicalNotificationMails", + "verifiedDomains", + "mobileDeviceManagementAuthority", + "extensions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of organization", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.organization" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "organization.organization" + ], + "summary": "Add new entity to organization", + "operationId": "organization.organization.CreateOrganization", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.organization" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.organization" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/organization/{organization-id}": { + "get": { + "tags": [ + "organization.organization" + ], + "summary": "Get entity from organization by key", + "operationId": "organization.organization.GetOrganization", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "assignedPlans", + "businessPhones", + "city", + "country", + "countryLetterCode", + "displayName", + "marketingNotificationEmails", + "onPremisesLastSyncDateTime", + "onPremisesSyncEnabled", + "postalCode", + "preferredLanguage", + "privacyProfile", + "provisionedPlans", + "securityComplianceNotificationMails", + "securityComplianceNotificationPhones", + "state", + "street", + "technicalNotificationMails", + "verifiedDomains", + "mobileDeviceManagementAuthority", + "extensions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.organization" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "organization.organization" + ], + "summary": "Update entity in organization", + "operationId": "organization.organization.UpdateOrganization", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.organization" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "organization.organization" + ], + "summary": "Delete entity from organization", + "operationId": "organization.organization.DeleteOrganization", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/organization/{organization-id}/extensions": { + "get": { + "tags": [ + "organization.extension" + ], + "summary": "Get extensions from organization", + "operationId": "organization.ListExtensions", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "organization.extension" + ], + "summary": "Create new navigation property to extensions for organization", + "operationId": "organization.CreateExtensions", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/organization/{organization-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "organization.extension" + ], + "summary": "Get extensions from organization", + "operationId": "organization.GetExtensions", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "organization.extension" + ], + "summary": "Update the navigation property extensions in organization", + "operationId": "organization.UpdateExtensions", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "organization.extension" + ], + "summary": "Delete navigation property extensions for organization", + "operationId": "organization.DeleteExtensions", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/organization/{organization-id}/checkMemberGroups": { + "post": { + "tags": [ + "organization.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "organization.checkMemberGroups", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/organization/{organization-id}/getMemberGroups": { + "post": { + "tags": [ + "organization.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "organization.getMemberGroups", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/organization/{organization-id}/getMemberObjects": { + "post": { + "tags": [ + "organization.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "organization.getMemberObjects", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/organization/{organization-id}/restore": { + "post": { + "tags": [ + "organization.Actions" + ], + "summary": "Invoke action restore", + "operationId": "organization.restore", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/organization/{organization-id}/setMobileDeviceManagementAuthority": { + "post": { + "tags": [ + "organization.Actions" + ], + "summary": "Invoke action setMobileDeviceManagementAuthority", + "operationId": "organization.setMobileDeviceManagementAuthority", + "parameters": [ + { + "name": "organization-id", + "in": "path", + "description": "key: id of organization", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "organization" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/organization/getByIds": { + "post": { + "tags": [ + "organization.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "organization.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/planner": { + "get": { + "tags": [ + "planner.planner" + ], + "summary": "Get planner", + "operationId": "planner.planner.GetPlanner", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "tasks", + "plans", + "buckets" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "plans", + "buckets" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.planner" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.planner" + ], + "summary": "Update planner", + "operationId": "planner.planner.UpdatePlanner", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.planner" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/buckets": { + "get": { + "tags": [ + "planner.plannerBucket" + ], + "summary": "Get buckets from planner", + "operationId": "planner.ListBuckets", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "planId", + "planId desc", + "orderHint", + "orderHint desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "planId", + "orderHint", + "tasks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerBucket", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "planner.plannerBucket" + ], + "summary": "Create new navigation property to buckets for planner", + "operationId": "planner.CreateBuckets", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/buckets/{plannerBucket-id}": { + "get": { + "tags": [ + "planner.plannerBucket" + ], + "summary": "Get buckets from planner", + "operationId": "planner.GetBuckets", + "parameters": [ + { + "name": "plannerBucket-id", + "in": "path", + "description": "key: id of plannerBucket", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerBucket" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "planId", + "orderHint", + "tasks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.plannerBucket" + ], + "summary": "Update the navigation property buckets in planner", + "operationId": "planner.UpdateBuckets", + "parameters": [ + { + "name": "plannerBucket-id", + "in": "path", + "description": "key: id of plannerBucket", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerBucket" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.plannerBucket" + ], + "summary": "Delete navigation property buckets for planner", + "operationId": "planner.DeleteBuckets", + "parameters": [ + { + "name": "plannerBucket-id", + "in": "path", + "description": "key: id of plannerBucket", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerBucket" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/buckets/{plannerBucket-id}/tasks": { + "get": { + "tags": [ + "planner.buckets.plannerTask" + ], + "summary": "Get tasks from planner", + "operationId": "planner.buckets.ListTasks", + "parameters": [ + { + "name": "plannerBucket-id", + "in": "path", + "description": "key: id of plannerBucket", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerBucket" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "planId", + "bucketId", + "title", + "orderHint", + "assigneePriority", + "percentComplete", + "startDateTime", + "createdDateTime", + "dueDateTime", + "hasDescription", + "previewType", + "completedDateTime", + "completedBy", + "referenceCount", + "checklistItemCount", + "activeChecklistItemCount", + "appliedCategories", + "assignments", + "conversationThreadId", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/buckets/{plannerBucket-id}/tasks/$ref": { + "get": { + "tags": [ + "planner.buckets.plannerTask" + ], + "summary": "Get ref of tasks from planner", + "operationId": "planner.buckets.ListRefTasks", + "parameters": [ + { + "name": "plannerBucket-id", + "in": "path", + "description": "key: id of plannerBucket", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerBucket" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "planner.buckets.plannerTask" + ], + "summary": "Create new navigation property ref to tasks for planner", + "operationId": "planner.buckets.CreateRefTasks", + "parameters": [ + { + "name": "plannerBucket-id", + "in": "path", + "description": "key: id of plannerBucket", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerBucket" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans": { + "get": { + "tags": [ + "planner.plannerPlan" + ], + "summary": "Get plans from planner", + "operationId": "planner.ListPlans", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "owner", + "title", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "planner.plannerPlan" + ], + "summary": "Create new navigation property to plans for planner", + "operationId": "planner.CreatePlans", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans/{plannerPlan-id}": { + "get": { + "tags": [ + "planner.plannerPlan" + ], + "summary": "Get plans from planner", + "operationId": "planner.GetPlans", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "owner", + "title", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.plannerPlan" + ], + "summary": "Update the navigation property plans in planner", + "operationId": "planner.UpdatePlans", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.plannerPlan" + ], + "summary": "Delete navigation property plans for planner", + "operationId": "planner.DeletePlans", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans/{plannerPlan-id}/buckets": { + "get": { + "tags": [ + "planner.plans.plannerBucket" + ], + "summary": "Get buckets from planner", + "operationId": "planner.plans.ListBuckets", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "planId", + "planId desc", + "orderHint", + "orderHint desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "planId", + "orderHint", + "tasks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerBucket", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans/{plannerPlan-id}/buckets/$ref": { + "get": { + "tags": [ + "planner.plans.plannerBucket" + ], + "summary": "Get ref of buckets from planner", + "operationId": "planner.plans.ListRefBuckets", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "planId", + "planId desc", + "orderHint", + "orderHint desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerBucket", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "planner.plans.plannerBucket" + ], + "summary": "Create new navigation property ref to buckets for planner", + "operationId": "planner.plans.CreateRefBuckets", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans/{plannerPlan-id}/details": { + "get": { + "tags": [ + "planner.plans.plannerPlanDetails" + ], + "summary": "Get details from planner", + "operationId": "planner.plans.GetDetails", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "sharedWith", + "categoryDescriptions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlanDetails" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.plans.plannerPlanDetails" + ], + "summary": "Update the navigation property details in planner", + "operationId": "planner.plans.UpdateDetails", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlanDetails" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.plans.plannerPlanDetails" + ], + "summary": "Delete navigation property details for planner", + "operationId": "planner.plans.DeleteDetails", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans/{plannerPlan-id}/tasks": { + "get": { + "tags": [ + "planner.plans.plannerTask" + ], + "summary": "Get tasks from planner", + "operationId": "planner.plans.ListTasks", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "planId", + "bucketId", + "title", + "orderHint", + "assigneePriority", + "percentComplete", + "startDateTime", + "createdDateTime", + "dueDateTime", + "hasDescription", + "previewType", + "completedDateTime", + "completedBy", + "referenceCount", + "checklistItemCount", + "activeChecklistItemCount", + "appliedCategories", + "assignments", + "conversationThreadId", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/plans/{plannerPlan-id}/tasks/$ref": { + "get": { + "tags": [ + "planner.plans.plannerTask" + ], + "summary": "Get ref of tasks from planner", + "operationId": "planner.plans.ListRefTasks", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "planner.plans.plannerTask" + ], + "summary": "Create new navigation property ref to tasks for planner", + "operationId": "planner.plans.CreateRefTasks", + "parameters": [ + { + "name": "plannerPlan-id", + "in": "path", + "description": "key: id of plannerPlan", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerPlan" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/tasks": { + "get": { + "tags": [ + "planner.plannerTask" + ], + "summary": "Get tasks from planner", + "operationId": "planner.ListTasks", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "planId", + "bucketId", + "title", + "orderHint", + "assigneePriority", + "percentComplete", + "startDateTime", + "createdDateTime", + "dueDateTime", + "hasDescription", + "previewType", + "completedDateTime", + "completedBy", + "referenceCount", + "checklistItemCount", + "activeChecklistItemCount", + "appliedCategories", + "assignments", + "conversationThreadId", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "planner.plannerTask" + ], + "summary": "Create new navigation property to tasks for planner", + "operationId": "planner.CreateTasks", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/tasks/{plannerTask-id}": { + "get": { + "tags": [ + "planner.plannerTask" + ], + "summary": "Get tasks from planner", + "operationId": "planner.GetTasks", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "planId", + "bucketId", + "title", + "orderHint", + "assigneePriority", + "percentComplete", + "startDateTime", + "createdDateTime", + "dueDateTime", + "hasDescription", + "previewType", + "completedDateTime", + "completedBy", + "referenceCount", + "checklistItemCount", + "activeChecklistItemCount", + "appliedCategories", + "assignments", + "conversationThreadId", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.plannerTask" + ], + "summary": "Update the navigation property tasks in planner", + "operationId": "planner.UpdateTasks", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.plannerTask" + ], + "summary": "Delete navigation property tasks for planner", + "operationId": "planner.DeleteTasks", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat": { + "get": { + "tags": [ + "planner.tasks.plannerAssignedToTaskBoardTaskFormat" + ], + "summary": "Get assignedToTaskBoardFormat from planner", + "operationId": "planner.tasks.GetAssignedToTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "unassignedOrderHint", + "orderHintsByAssignee" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.tasks.plannerAssignedToTaskBoardTaskFormat" + ], + "summary": "Update the navigation property assignedToTaskBoardFormat in planner", + "operationId": "planner.tasks.UpdateAssignedToTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.tasks.plannerAssignedToTaskBoardTaskFormat" + ], + "summary": "Delete navigation property assignedToTaskBoardFormat for planner", + "operationId": "planner.tasks.DeleteAssignedToTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat": { + "get": { + "tags": [ + "planner.tasks.plannerBucketTaskBoardTaskFormat" + ], + "summary": "Get bucketTaskBoardFormat from planner", + "operationId": "planner.tasks.GetBucketTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "orderHint" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.tasks.plannerBucketTaskBoardTaskFormat" + ], + "summary": "Update the navigation property bucketTaskBoardFormat in planner", + "operationId": "planner.tasks.UpdateBucketTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.tasks.plannerBucketTaskBoardTaskFormat" + ], + "summary": "Delete navigation property bucketTaskBoardFormat for planner", + "operationId": "planner.tasks.DeleteBucketTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/tasks/{plannerTask-id}/details": { + "get": { + "tags": [ + "planner.tasks.plannerTaskDetails" + ], + "summary": "Get details from planner", + "operationId": "planner.tasks.GetDetails", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "previewType", + "references", + "checklist" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerTaskDetails" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.tasks.plannerTaskDetails" + ], + "summary": "Update the navigation property details in planner", + "operationId": "planner.tasks.UpdateDetails", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerTaskDetails" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.tasks.plannerTaskDetails" + ], + "summary": "Delete navigation property details for planner", + "operationId": "planner.tasks.DeleteDetails", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat": { + "get": { + "tags": [ + "planner.tasks.plannerProgressTaskBoardTaskFormat" + ], + "summary": "Get progressTaskBoardFormat from planner", + "operationId": "planner.tasks.GetProgressTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "orderHint" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "planner.tasks.plannerProgressTaskBoardTaskFormat" + ], + "summary": "Update the navigation property progressTaskBoardFormat in planner", + "operationId": "planner.tasks.UpdateProgressTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "planner.tasks.plannerProgressTaskBoardTaskFormat" + ], + "summary": "Delete navigation property progressTaskBoardFormat for planner", + "operationId": "planner.tasks.DeleteProgressTaskBoardFormat", + "parameters": [ + { + "name": "plannerTask-id", + "in": "path", + "description": "key: id of plannerTask", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "plannerTask" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/reports": { + "get": { + "tags": [ + "reports.reportRoot" + ], + "summary": "Get reports", + "operationId": "reports.reportRoot.GetReportRoot", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.reportRoot" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "reports.reportRoot" + ], + "summary": "Update reports", + "operationId": "reports.reportRoot.UpdateReportRoot", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.reportRoot" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/reports/deviceConfigurationDeviceActivity()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function deviceConfigurationDeviceActivity", + "operationId": "reports.deviceConfigurationDeviceActivity", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.report" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/deviceConfigurationUserActivity()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function deviceConfigurationUserActivity", + "operationId": "reports.deviceConfigurationUserActivity", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.report" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getEmailActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailActivityCounts", + "operationId": "reports.getEmailActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getEmailActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailActivityUserCounts", + "operationId": "reports.getEmailActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getEmailActivityUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailActivityUserDetail", + "operationId": "reports.getEmailActivityUserDetail-4d91", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getEmailActivityUserDetail(period={period})" + ] + }, + "/reports/getEmailActivityUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailActivityUserDetail", + "operationId": "reports.getEmailActivityUserDetail-ac5f", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getEmailActivityUserDetail(date={date})" + ] + }, + "/reports/getEmailAppUsageAppsUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailAppUsageAppsUserCounts", + "operationId": "reports.getEmailAppUsageAppsUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getEmailAppUsageUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailAppUsageUserCounts", + "operationId": "reports.getEmailAppUsageUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getEmailAppUsageUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailAppUsageUserDetail", + "operationId": "reports.getEmailAppUsageUserDetail-d5d6", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getEmailAppUsageUserDetail(period={period})" + ] + }, + "/reports/getEmailAppUsageUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailAppUsageUserDetail", + "operationId": "reports.getEmailAppUsageUserDetail-22ba", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getEmailAppUsageUserDetail(date={date})" + ] + }, + "/reports/getEmailAppUsageVersionsUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getEmailAppUsageVersionsUserCounts", + "operationId": "reports.getEmailAppUsageVersionsUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getMailboxUsageDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getMailboxUsageDetail", + "operationId": "reports.getMailboxUsageDetail", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getMailboxUsageMailboxCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getMailboxUsageMailboxCounts", + "operationId": "reports.getMailboxUsageMailboxCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getMailboxUsageQuotaStatusMailboxCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getMailboxUsageQuotaStatusMailboxCounts", + "operationId": "reports.getMailboxUsageQuotaStatusMailboxCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getMailboxUsageStorage(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getMailboxUsageStorage", + "operationId": "reports.getMailboxUsageStorage", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365ActivationCounts()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ActivationCounts", + "operationId": "reports.getOffice365ActivationCounts", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365ActivationsUserCounts()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ActivationsUserCounts", + "operationId": "reports.getOffice365ActivationsUserCounts", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365ActivationsUserDetail()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ActivationsUserDetail", + "operationId": "reports.getOffice365ActivationsUserDetail", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365ActiveUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ActiveUserCounts", + "operationId": "reports.getOffice365ActiveUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365ActiveUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ActiveUserDetail", + "operationId": "reports.getOffice365ActiveUserDetail-b911", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOffice365ActiveUserDetail(period={period})" + ] + }, + "/reports/getOffice365ActiveUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ActiveUserDetail", + "operationId": "reports.getOffice365ActiveUserDetail-3cb5", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOffice365ActiveUserDetail(date={date})" + ] + }, + "/reports/getOffice365GroupsActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365GroupsActivityCounts", + "operationId": "reports.getOffice365GroupsActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365GroupsActivityDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365GroupsActivityDetail", + "operationId": "reports.getOffice365GroupsActivityDetail-87d6", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOffice365GroupsActivityDetail(period={period})" + ] + }, + "/reports/getOffice365GroupsActivityDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365GroupsActivityDetail", + "operationId": "reports.getOffice365GroupsActivityDetail-e6b8", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOffice365GroupsActivityDetail(date={date})" + ] + }, + "/reports/getOffice365GroupsActivityFileCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365GroupsActivityFileCounts", + "operationId": "reports.getOffice365GroupsActivityFileCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365GroupsActivityGroupCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365GroupsActivityGroupCounts", + "operationId": "reports.getOffice365GroupsActivityGroupCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365GroupsActivityStorage(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365GroupsActivityStorage", + "operationId": "reports.getOffice365GroupsActivityStorage", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOffice365ServicesUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOffice365ServicesUserCounts", + "operationId": "reports.getOffice365ServicesUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOneDriveActivityFileCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveActivityFileCounts", + "operationId": "reports.getOneDriveActivityFileCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOneDriveActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveActivityUserCounts", + "operationId": "reports.getOneDriveActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOneDriveActivityUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveActivityUserDetail", + "operationId": "reports.getOneDriveActivityUserDetail-77b1", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOneDriveActivityUserDetail(period={period})" + ] + }, + "/reports/getOneDriveActivityUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveActivityUserDetail", + "operationId": "reports.getOneDriveActivityUserDetail-0cff", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOneDriveActivityUserDetail(date={date})" + ] + }, + "/reports/getOneDriveUsageAccountCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveUsageAccountCounts", + "operationId": "reports.getOneDriveUsageAccountCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOneDriveUsageAccountDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveUsageAccountDetail", + "operationId": "reports.getOneDriveUsageAccountDetail-3b63", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOneDriveUsageAccountDetail(period={period})" + ] + }, + "/reports/getOneDriveUsageAccountDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveUsageAccountDetail", + "operationId": "reports.getOneDriveUsageAccountDetail-d35d", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getOneDriveUsageAccountDetail(date={date})" + ] + }, + "/reports/getOneDriveUsageFileCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveUsageFileCounts", + "operationId": "reports.getOneDriveUsageFileCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getOneDriveUsageStorage(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getOneDriveUsageStorage", + "operationId": "reports.getOneDriveUsageStorage", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointActivityFileCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointActivityFileCounts", + "operationId": "reports.getSharePointActivityFileCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointActivityPages(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointActivityPages", + "operationId": "reports.getSharePointActivityPages", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointActivityUserCounts", + "operationId": "reports.getSharePointActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointActivityUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointActivityUserDetail", + "operationId": "reports.getSharePointActivityUserDetail-48b2", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSharePointActivityUserDetail(period={period})" + ] + }, + "/reports/getSharePointActivityUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointActivityUserDetail", + "operationId": "reports.getSharePointActivityUserDetail-ab79", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSharePointActivityUserDetail(date={date})" + ] + }, + "/reports/getSharePointSiteUsageDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointSiteUsageDetail", + "operationId": "reports.getSharePointSiteUsageDetail-a4c0", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSharePointSiteUsageDetail(period={period})" + ] + }, + "/reports/getSharePointSiteUsageDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointSiteUsageDetail", + "operationId": "reports.getSharePointSiteUsageDetail-c7c5", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSharePointSiteUsageDetail(date={date})" + ] + }, + "/reports/getSharePointSiteUsageFileCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointSiteUsageFileCounts", + "operationId": "reports.getSharePointSiteUsageFileCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointSiteUsagePages(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointSiteUsagePages", + "operationId": "reports.getSharePointSiteUsagePages", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointSiteUsageSiteCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointSiteUsageSiteCounts", + "operationId": "reports.getSharePointSiteUsageSiteCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSharePointSiteUsageStorage(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSharePointSiteUsageStorage", + "operationId": "reports.getSharePointSiteUsageStorage", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessActivityCounts", + "operationId": "reports.getSkypeForBusinessActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessActivityUserCounts", + "operationId": "reports.getSkypeForBusinessActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessActivityUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessActivityUserDetail", + "operationId": "reports.getSkypeForBusinessActivityUserDetail-83d0", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSkypeForBusinessActivityUserDetail(period={period})" + ] + }, + "/reports/getSkypeForBusinessActivityUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessActivityUserDetail", + "operationId": "reports.getSkypeForBusinessActivityUserDetail-139c", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSkypeForBusinessActivityUserDetail(date={date})" + ] + }, + "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessDeviceUsageDistributionUserCounts", + "operationId": "reports.getSkypeForBusinessDeviceUsageDistributionUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessDeviceUsageUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessDeviceUsageUserCounts", + "operationId": "reports.getSkypeForBusinessDeviceUsageUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessDeviceUsageUserDetail", + "operationId": "reports.getSkypeForBusinessDeviceUsageUserDetail-fe29", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSkypeForBusinessDeviceUsageUserDetail(period={period})" + ] + }, + "/reports/getSkypeForBusinessDeviceUsageUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessDeviceUsageUserDetail", + "operationId": "reports.getSkypeForBusinessDeviceUsageUserDetail-aebd", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})" + ] + }, + "/reports/getSkypeForBusinessOrganizerActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessOrganizerActivityCounts", + "operationId": "reports.getSkypeForBusinessOrganizerActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessOrganizerActivityMinuteCounts", + "operationId": "reports.getSkypeForBusinessOrganizerActivityMinuteCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessOrganizerActivityUserCounts", + "operationId": "reports.getSkypeForBusinessOrganizerActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessParticipantActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessParticipantActivityCounts", + "operationId": "reports.getSkypeForBusinessParticipantActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessParticipantActivityMinuteCounts", + "operationId": "reports.getSkypeForBusinessParticipantActivityMinuteCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessParticipantActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessParticipantActivityUserCounts", + "operationId": "reports.getSkypeForBusinessParticipantActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessPeerToPeerActivityCounts", + "operationId": "reports.getSkypeForBusinessPeerToPeerActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessPeerToPeerActivityMinuteCounts", + "operationId": "reports.getSkypeForBusinessPeerToPeerActivityMinuteCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getSkypeForBusinessPeerToPeerActivityUserCounts", + "operationId": "reports.getSkypeForBusinessPeerToPeerActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getTeamsDeviceUsageDistributionUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsDeviceUsageDistributionUserCounts", + "operationId": "reports.getTeamsDeviceUsageDistributionUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getTeamsDeviceUsageUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsDeviceUsageUserCounts", + "operationId": "reports.getTeamsDeviceUsageUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getTeamsDeviceUsageUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsDeviceUsageUserDetail", + "operationId": "reports.getTeamsDeviceUsageUserDetail-8630", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getTeamsDeviceUsageUserDetail(period={period})" + ] + }, + "/reports/getTeamsDeviceUsageUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsDeviceUsageUserDetail", + "operationId": "reports.getTeamsDeviceUsageUserDetail-901d", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getTeamsDeviceUsageUserDetail(date={date})" + ] + }, + "/reports/getTeamsUserActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsUserActivityCounts", + "operationId": "reports.getTeamsUserActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getTeamsUserActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsUserActivityUserCounts", + "operationId": "reports.getTeamsUserActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getTeamsUserActivityUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsUserActivityUserDetail", + "operationId": "reports.getTeamsUserActivityUserDetail-fba7", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getTeamsUserActivityUserDetail(period={period})" + ] + }, + "/reports/getTeamsUserActivityUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getTeamsUserActivityUserDetail", + "operationId": "reports.getTeamsUserActivityUserDetail-3e63", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getTeamsUserActivityUserDetail(date={date})" + ] + }, + "/reports/getYammerActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerActivityCounts", + "operationId": "reports.getYammerActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getYammerActivityUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerActivityUserCounts", + "operationId": "reports.getYammerActivityUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getYammerActivityUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerActivityUserDetail", + "operationId": "reports.getYammerActivityUserDetail-41fe", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getYammerActivityUserDetail(period={period})" + ] + }, + "/reports/getYammerActivityUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerActivityUserDetail", + "operationId": "reports.getYammerActivityUserDetail-1ab5", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getYammerActivityUserDetail(date={date})" + ] + }, + "/reports/getYammerDeviceUsageDistributionUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerDeviceUsageDistributionUserCounts", + "operationId": "reports.getYammerDeviceUsageDistributionUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getYammerDeviceUsageUserCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerDeviceUsageUserCounts", + "operationId": "reports.getYammerDeviceUsageUserCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getYammerDeviceUsageUserDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerDeviceUsageUserDetail", + "operationId": "reports.getYammerDeviceUsageUserDetail-e734", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getYammerDeviceUsageUserDetail(period={period})" + ] + }, + "/reports/getYammerDeviceUsageUserDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerDeviceUsageUserDetail", + "operationId": "reports.getYammerDeviceUsageUserDetail-4f11", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getYammerDeviceUsageUserDetail(date={date})" + ] + }, + "/reports/getYammerGroupsActivityCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerGroupsActivityCounts", + "operationId": "reports.getYammerGroupsActivityCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/getYammerGroupsActivityDetail(date={date})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerGroupsActivityDetail", + "operationId": "reports.getYammerGroupsActivityDetail-9ea3", + "parameters": [ + { + "name": "date", + "in": "path", + "description": "Usage: date={date}", + "required": true, + "schema": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getYammerGroupsActivityDetail(period={period})" + ] + }, + "/reports/getYammerGroupsActivityDetail(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerGroupsActivityDetail", + "operationId": "reports.getYammerGroupsActivityDetail-a400", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/getYammerGroupsActivityDetail(date={date})" + ] + }, + "/reports/getYammerGroupsActivityGroupCounts(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function getYammerGroupsActivityGroupCounts", + "operationId": "reports.getYammerGroupsActivityGroupCounts", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.report" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/reports/managedDeviceEnrollmentFailureDetails()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function managedDeviceEnrollmentFailureDetails", + "operationId": "reports.managedDeviceEnrollmentFailureDetails-8191", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.report" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter={filter},skipToken={skipToken})" + ] + }, + "/reports/managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter={filter},skipToken={skipToken})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function managedDeviceEnrollmentFailureDetails", + "operationId": "reports.managedDeviceEnrollmentFailureDetails-afb1", + "parameters": [ + { + "name": "skip", + "in": "path", + "description": "Usage: skip={skip}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + }, + { + "name": "top", + "in": "path", + "description": "Usage: top={top}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + }, + { + "name": "filter", + "in": "path", + "description": "Usage: filter={filter}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "name": "skipToken", + "in": "path", + "description": "Usage: skipToken={skipToken}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.report" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/managedDeviceEnrollmentFailureDetails()" + ] + }, + "/reports/managedDeviceEnrollmentTopFailures()": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function managedDeviceEnrollmentTopFailures", + "operationId": "reports.managedDeviceEnrollmentTopFailures-9ce7", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.report" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/managedDeviceEnrollmentTopFailures(period={period})" + ] + }, + "/reports/managedDeviceEnrollmentTopFailures(period={period})": { + "get": { + "tags": [ + "reports.Functions" + ], + "summary": "Invoke function managedDeviceEnrollmentTopFailures", + "operationId": "reports.managedDeviceEnrollmentTopFailures-c017", + "parameters": [ + { + "name": "period", + "in": "path", + "description": "Usage: period={period}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.report" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/reports/managedDeviceEnrollmentTopFailures()" + ] + }, + "/schemaExtensions": { + "get": { + "tags": [ + "schemaExtensions.schemaExtension" + ], + "summary": "Get entities from schemaExtensions", + "operationId": "schemaExtensions.schemaExtension.ListSchemaExtension", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "description", + "description desc", + "targetTypes", + "targetTypes desc", + "properties", + "properties desc", + "status", + "status desc", + "owner", + "owner desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "targetTypes", + "properties", + "status", + "owner" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of schemaExtension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.schemaExtension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "schemaExtensions.schemaExtension" + ], + "summary": "Add new entity to schemaExtensions", + "operationId": "schemaExtensions.schemaExtension.CreateSchemaExtension", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.schemaExtension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.schemaExtension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/schemaExtensions/{schemaExtension-id}": { + "get": { + "tags": [ + "schemaExtensions.schemaExtension" + ], + "summary": "Get entity from schemaExtensions by key", + "operationId": "schemaExtensions.schemaExtension.GetSchemaExtension", + "parameters": [ + { + "name": "schemaExtension-id", + "in": "path", + "description": "key: id of schemaExtension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "schemaExtension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "targetTypes", + "properties", + "status", + "owner" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.schemaExtension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "schemaExtensions.schemaExtension" + ], + "summary": "Update entity in schemaExtensions", + "operationId": "schemaExtensions.schemaExtension.UpdateSchemaExtension", + "parameters": [ + { + "name": "schemaExtension-id", + "in": "path", + "description": "key: id of schemaExtension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "schemaExtension" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.schemaExtension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "schemaExtensions.schemaExtension" + ], + "summary": "Delete entity from schemaExtensions", + "operationId": "schemaExtensions.schemaExtension.DeleteSchemaExtension", + "parameters": [ + { + "name": "schemaExtension-id", + "in": "path", + "description": "key: id of schemaExtension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "schemaExtension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/Security": { + "get": { + "tags": [ + "Security.security" + ], + "summary": "Get Security", + "operationId": "Security.security.GetSecurity", + "parameters": [ + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "alerts" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "alerts" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.security" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "Security.security" + ], + "summary": "Update Security", + "operationId": "Security.security.UpdateSecurity", + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.security" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/Security/alerts": { + "get": { + "tags": [ + "Security.alert" + ], + "summary": "Get alerts from Security", + "operationId": "Security.ListAlerts", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "activityGroupName", + "activityGroupName desc", + "assignedTo", + "assignedTo desc", + "azureSubscriptionId", + "azureSubscriptionId desc", + "azureTenantId", + "azureTenantId desc", + "category", + "category desc", + "closedDateTime", + "closedDateTime desc", + "cloudAppStates", + "cloudAppStates desc", + "comments", + "comments desc", + "confidence", + "confidence desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "detectionIds", + "detectionIds desc", + "eventDateTime", + "eventDateTime desc", + "feedback", + "feedback desc", + "fileStates", + "fileStates desc", + "hostStates", + "hostStates desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "malwareStates", + "malwareStates desc", + "networkConnections", + "networkConnections desc", + "processes", + "processes desc", + "recommendedActions", + "recommendedActions desc", + "registryKeyStates", + "registryKeyStates desc", + "severity", + "severity desc", + "sourceMaterials", + "sourceMaterials desc", + "status", + "status desc", + "tags", + "tags desc", + "title", + "title desc", + "triggers", + "triggers desc", + "userStates", + "userStates desc", + "vendorInformation", + "vendorInformation desc", + "vulnerabilityStates", + "vulnerabilityStates desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "activityGroupName", + "assignedTo", + "azureSubscriptionId", + "azureTenantId", + "category", + "closedDateTime", + "cloudAppStates", + "comments", + "confidence", + "createdDateTime", + "description", + "detectionIds", + "eventDateTime", + "feedback", + "fileStates", + "hostStates", + "lastModifiedDateTime", + "malwareStates", + "networkConnections", + "processes", + "recommendedActions", + "registryKeyStates", + "severity", + "sourceMaterials", + "status", + "tags", + "title", + "triggers", + "userStates", + "vendorInformation", + "vulnerabilityStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of alert", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.alert" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "Security.alert" + ], + "summary": "Create new navigation property to alerts for Security", + "operationId": "Security.CreateAlerts", + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.alert" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.alert" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/Security/alerts/{alert-id}": { + "get": { + "tags": [ + "Security.alert" + ], + "summary": "Get alerts from Security", + "operationId": "Security.GetAlerts", + "parameters": [ + { + "name": "alert-id", + "in": "path", + "description": "key: id of alert", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "alert" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "activityGroupName", + "assignedTo", + "azureSubscriptionId", + "azureTenantId", + "category", + "closedDateTime", + "cloudAppStates", + "comments", + "confidence", + "createdDateTime", + "description", + "detectionIds", + "eventDateTime", + "feedback", + "fileStates", + "hostStates", + "lastModifiedDateTime", + "malwareStates", + "networkConnections", + "processes", + "recommendedActions", + "registryKeyStates", + "severity", + "sourceMaterials", + "status", + "tags", + "title", + "triggers", + "userStates", + "vendorInformation", + "vulnerabilityStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.alert" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "Security.alert" + ], + "summary": "Update the navigation property alerts in Security", + "operationId": "Security.UpdateAlerts", + "parameters": [ + { + "name": "alert-id", + "in": "path", + "description": "key: id of alert", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "alert" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.alert" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "Security.alert" + ], + "summary": "Delete navigation property alerts for Security", + "operationId": "Security.DeleteAlerts", + "parameters": [ + { + "name": "alert-id", + "in": "path", + "description": "key: id of alert", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "alert" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares": { + "get": { + "tags": [ + "shares.sharedDriveItem" + ], + "summary": "Get entities from shares", + "operationId": "shares.sharedDriveItem.ListSharedDriveItem", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "owner", + "owner desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "owner", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "items", + "list", + "listItem", + "root", + "site" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "items", + "list", + "listItem", + "root", + "site" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of sharedDriveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sharedDriveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "shares.sharedDriveItem" + ], + "summary": "Add new entity to shares", + "operationId": "shares.sharedDriveItem.CreateSharedDriveItem", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedDriveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedDriveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}": { + "get": { + "tags": [ + "shares.sharedDriveItem" + ], + "summary": "Get entity from shares by key", + "operationId": "shares.sharedDriveItem.GetSharedDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "owner", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "items", + "list", + "listItem", + "root", + "site" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "items", + "list", + "listItem", + "root", + "site" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedDriveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.sharedDriveItem" + ], + "summary": "Update entity in shares", + "operationId": "shares.sharedDriveItem.UpdateSharedDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedDriveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.sharedDriveItem" + ], + "summary": "Delete entity from shares", + "operationId": "shares.sharedDriveItem.DeleteSharedDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/driveItem": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get driveItem from shares", + "operationId": "shares.GetDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.driveItem" + ], + "summary": "Update the navigation property driveItem in shares", + "operationId": "shares.UpdateDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.driveItem" + ], + "summary": "Delete navigation property driveItem for shares", + "operationId": "shares.DeleteDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/driveItem/content": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from shares", + "operationId": "shares.GetDriveItemContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "shares.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in shares", + "operationId": "shares.UpdateDriveItemContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/items": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get items from shares", + "operationId": "shares.ListItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.driveItem" + ], + "summary": "Create new navigation property to items for shares", + "operationId": "shares.CreateItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/items/{workbook-id}": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get items from shares", + "operationId": "shares.GetItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.driveItem" + ], + "summary": "Update the navigation property items in shares", + "operationId": "shares.UpdateItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.driveItem" + ], + "summary": "Delete navigation property items for shares", + "operationId": "shares.DeleteItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/items/{workbook-id}/content": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get media content for the navigation property items from shares", + "operationId": "shares.GetItemsContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "shares.driveItem" + ], + "summary": "Update media content for the navigation property items in shares", + "operationId": "shares.UpdateItemsContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list": { + "get": { + "tags": [ + "shares.list" + ], + "summary": "Get list from shares", + "operationId": "shares.GetList", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "list", + "sharepointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list" + ], + "summary": "Update the navigation property list in shares", + "operationId": "shares.UpdateList", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list" + ], + "summary": "Delete navigation property list for shares", + "operationId": "shares.DeleteList", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/columns": { + "get": { + "tags": [ + "shares.list.columnDefinition" + ], + "summary": "Get columns from shares", + "operationId": "shares.list.ListColumns", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "boolean", + "boolean desc", + "calculated", + "calculated desc", + "choice", + "choice desc", + "columnGroup", + "columnGroup desc", + "currency", + "currency desc", + "dateTime", + "dateTime desc", + "defaultValue", + "defaultValue desc", + "description", + "description desc", + "displayName", + "displayName desc", + "enforceUniqueValues", + "enforceUniqueValues desc", + "hidden", + "hidden desc", + "indexed", + "indexed desc", + "lookup", + "lookup desc", + "name", + "name desc", + "number", + "number desc", + "personOrGroup", + "personOrGroup desc", + "readOnly", + "readOnly desc", + "required", + "required desc", + "text", + "text desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnDefinition", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.list.columnDefinition" + ], + "summary": "Create new navigation property to columns for shares", + "operationId": "shares.list.CreateColumns", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}": { + "get": { + "tags": [ + "shares.list.columnDefinition" + ], + "summary": "Get columns from shares", + "operationId": "shares.list.GetColumns", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.columnDefinition" + ], + "summary": "Update the navigation property columns in shares", + "operationId": "shares.list.UpdateColumns", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.columnDefinition" + ], + "summary": "Delete navigation property columns for shares", + "operationId": "shares.list.DeleteColumns", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/contentTypes": { + "get": { + "tags": [ + "shares.list.contentType" + ], + "summary": "Get contentTypes from shares", + "operationId": "shares.list.ListContentTypes", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "description", + "description desc", + "group", + "group desc", + "hidden", + "hidden desc", + "inheritedFrom", + "inheritedFrom desc", + "name", + "name desc", + "order", + "order desc", + "parentId", + "parentId desc", + "readOnly", + "readOnly desc", + "sealed", + "sealed desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contentType", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.list.contentType" + ], + "summary": "Create new navigation property to contentTypes for shares", + "operationId": "shares.list.CreateContentTypes", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}": { + "get": { + "tags": [ + "shares.list.contentType" + ], + "summary": "Get contentTypes from shares", + "operationId": "shares.list.GetContentTypes", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.contentType" + ], + "summary": "Update the navigation property contentTypes in shares", + "operationId": "shares.list.UpdateContentTypes", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.contentType" + ], + "summary": "Delete navigation property contentTypes for shares", + "operationId": "shares.list.DeleteContentTypes", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks": { + "get": { + "tags": [ + "shares.list.contentTypes.columnLink" + ], + "summary": "Get columnLinks from shares", + "operationId": "shares.list.contentTypes.ListColumnLinks", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnLink", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.list.contentTypes.columnLink" + ], + "summary": "Create new navigation property to columnLinks for shares", + "operationId": "shares.list.contentTypes.CreateColumnLinks", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": { + "get": { + "tags": [ + "shares.list.contentTypes.columnLink" + ], + "summary": "Get columnLinks from shares", + "operationId": "shares.list.contentTypes.GetColumnLinks", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.contentTypes.columnLink" + ], + "summary": "Update the navigation property columnLinks in shares", + "operationId": "shares.list.contentTypes.UpdateColumnLinks", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.contentTypes.columnLink" + ], + "summary": "Delete navigation property columnLinks for shares", + "operationId": "shares.list.contentTypes.DeleteColumnLinks", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/drive": { + "get": { + "tags": [ + "shares.list.drive" + ], + "summary": "Get drive from shares", + "operationId": "shares.list.GetDrive", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.drive" + ], + "summary": "Update the navigation property drive in shares", + "operationId": "shares.list.UpdateDrive", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.drive" + ], + "summary": "Delete navigation property drive for shares", + "operationId": "shares.list.DeleteDrive", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/items": { + "get": { + "tags": [ + "shares.list.listItem" + ], + "summary": "Get items from shares", + "operationId": "shares.list.ListItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "contentType", + "contentType desc", + "sharepointIds", + "sharepointIds desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.list.listItem" + ], + "summary": "Create new navigation property to items for shares", + "operationId": "shares.list.CreateItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}": { + "get": { + "tags": [ + "shares.list.listItem" + ], + "summary": "Get items from shares", + "operationId": "shares.list.GetItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.listItem" + ], + "summary": "Update the navigation property items in shares", + "operationId": "shares.list.UpdateItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.listItem" + ], + "summary": "Delete navigation property items for shares", + "operationId": "shares.list.DeleteItems", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem": { + "get": { + "tags": [ + "shares.list.items.driveItem" + ], + "summary": "Get driveItem from shares", + "operationId": "shares.list.items.GetDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.items.driveItem" + ], + "summary": "Update the navigation property driveItem in shares", + "operationId": "shares.list.items.UpdateDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.items.driveItem" + ], + "summary": "Delete navigation property driveItem for shares", + "operationId": "shares.list.items.DeleteDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/listItem/driveItem" + ] + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content": { + "get": { + "tags": [ + "shares.list.items.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from shares", + "operationId": "shares.list.items.GetDriveItemContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "shares.list.items.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in shares", + "operationId": "shares.list.items.UpdateDriveItemContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields": { + "get": { + "tags": [ + "shares.list.items.fieldValueSet" + ], + "summary": "Get fields from shares", + "operationId": "shares.list.items.GetFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.items.fieldValueSet" + ], + "summary": "Update the navigation property fields in shares", + "operationId": "shares.list.items.UpdateFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.items.fieldValueSet" + ], + "summary": "Delete navigation property fields for shares", + "operationId": "shares.list.items.DeleteFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/listItem/fields" + ] + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions": { + "get": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Get versions from shares", + "operationId": "shares.list.items.ListVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Create new navigation property to versions for shares", + "operationId": "shares.list.items.CreateVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/listItem/versions" + ] + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}": { + "get": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Get versions from shares", + "operationId": "shares.list.items.GetVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Update the navigation property versions in shares", + "operationId": "shares.list.items.UpdateVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Delete navigation property versions for shares", + "operationId": "shares.list.items.DeleteVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}" + ] + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": { + "get": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Get fields from shares", + "operationId": "shares.list.items.versions.GetFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Update the navigation property fields in shares", + "operationId": "shares.list.items.versions.UpdateFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.list.items.listItemVersion" + ], + "summary": "Delete navigation property fields for shares", + "operationId": "shares.list.items.versions.DeleteFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/fields" + ] + }, + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "shares.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "shares.list.items.versions.restoreVersion", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion" + ] + }, + "/shares/{sharedDriveItem-id}/listItem": { + "get": { + "tags": [ + "shares.listItem" + ], + "summary": "Get listItem from shares", + "operationId": "shares.GetListItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.listItem" + ], + "summary": "Update the navigation property listItem in shares", + "operationId": "shares.UpdateListItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.listItem" + ], + "summary": "Delete navigation property listItem for shares", + "operationId": "shares.DeleteListItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/listItem/driveItem": { + "get": { + "tags": [ + "shares.listItem.driveItem" + ], + "summary": "Get driveItem from shares", + "operationId": "shares.listItem.GetDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.listItem.driveItem" + ], + "summary": "Update the navigation property driveItem in shares", + "operationId": "shares.listItem.UpdateDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.listItem.driveItem" + ], + "summary": "Delete navigation property driveItem for shares", + "operationId": "shares.listItem.DeleteDriveItem", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem" + ] + }, + "/shares/{sharedDriveItem-id}/listItem/driveItem/content": { + "get": { + "tags": [ + "shares.listItem.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from shares", + "operationId": "shares.listItem.GetDriveItemContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "shares.listItem.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in shares", + "operationId": "shares.listItem.UpdateDriveItemContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/listItem/fields": { + "get": { + "tags": [ + "shares.listItem.fieldValueSet" + ], + "summary": "Get fields from shares", + "operationId": "shares.listItem.GetFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.listItem.fieldValueSet" + ], + "summary": "Update the navigation property fields in shares", + "operationId": "shares.listItem.UpdateFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.listItem.fieldValueSet" + ], + "summary": "Delete navigation property fields for shares", + "operationId": "shares.listItem.DeleteFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields" + ] + }, + "/shares/{sharedDriveItem-id}/listItem/versions": { + "get": { + "tags": [ + "shares.listItem.listItemVersion" + ], + "summary": "Get versions from shares", + "operationId": "shares.listItem.ListVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "shares.listItem.listItemVersion" + ], + "summary": "Create new navigation property to versions for shares", + "operationId": "shares.listItem.CreateVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions" + ] + }, + "/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}": { + "get": { + "tags": [ + "shares.listItem.listItemVersion" + ], + "summary": "Get versions from shares", + "operationId": "shares.listItem.GetVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.listItem.listItemVersion" + ], + "summary": "Update the navigation property versions in shares", + "operationId": "shares.listItem.UpdateVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.listItem.listItemVersion" + ], + "summary": "Delete navigation property versions for shares", + "operationId": "shares.listItem.DeleteVersions", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}" + ] + }, + "/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/fields": { + "get": { + "tags": [ + "shares.listItem.versions.fieldValueSet" + ], + "summary": "Get fields from shares", + "operationId": "shares.listItem.versions.GetFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.listItem.versions.fieldValueSet" + ], + "summary": "Update the navigation property fields in shares", + "operationId": "shares.listItem.versions.UpdateFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.listItem.versions.fieldValueSet" + ], + "summary": "Delete navigation property fields for shares", + "operationId": "shares.listItem.versions.DeleteFields", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields" + ] + }, + "/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "shares.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "shares.listItem.versions.restoreVersion", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion" + ] + }, + "/shares/{sharedDriveItem-id}/root": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get root from shares", + "operationId": "shares.GetRoot", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.driveItem" + ], + "summary": "Update the navigation property root in shares", + "operationId": "shares.UpdateRoot", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.driveItem" + ], + "summary": "Delete navigation property root for shares", + "operationId": "shares.DeleteRoot", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/root/content": { + "get": { + "tags": [ + "shares.driveItem" + ], + "summary": "Get media content for the navigation property root from shares", + "operationId": "shares.GetRootContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "shares.driveItem" + ], + "summary": "Update media content for the navigation property root in shares", + "operationId": "shares.UpdateRootContent", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/shares/{sharedDriveItem-id}/site": { + "get": { + "tags": [ + "shares.site" + ], + "summary": "Get site from shares", + "operationId": "shares.GetSite", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "shares.site" + ], + "summary": "Update the navigation property site in shares", + "operationId": "shares.UpdateSite", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "shares.site" + ], + "summary": "Delete navigation property site for shares", + "operationId": "shares.DeleteSite", + "parameters": [ + { + "name": "sharedDriveItem-id", + "in": "path", + "description": "key: id of sharedDriveItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedDriveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites": { + "get": { + "tags": [ + "sites.site" + ], + "summary": "Get entities from sites", + "operationId": "sites.site.ListSite", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "displayName", + "displayName desc", + "root", + "root desc", + "sharepointIds", + "sharepointIds desc", + "siteCollection", + "siteCollection desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of site", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "sites.site" + ], + "summary": "Add new entity to sites", + "operationId": "sites.site.CreateSite", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}": { + "get": { + "tags": [ + "sites.site" + ], + "summary": "Get entity from sites by key", + "operationId": "sites.site.GetSite", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.site" + ], + "summary": "Update entity in sites", + "operationId": "sites.site.UpdateSite", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.site" + ], + "summary": "Delete entity from sites", + "operationId": "sites.site.DeleteSite", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/columns": { + "get": { + "tags": [ + "sites.columnDefinition" + ], + "summary": "Get columns from sites", + "operationId": "sites.ListColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "boolean", + "boolean desc", + "calculated", + "calculated desc", + "choice", + "choice desc", + "columnGroup", + "columnGroup desc", + "currency", + "currency desc", + "dateTime", + "dateTime desc", + "defaultValue", + "defaultValue desc", + "description", + "description desc", + "displayName", + "displayName desc", + "enforceUniqueValues", + "enforceUniqueValues desc", + "hidden", + "hidden desc", + "indexed", + "indexed desc", + "lookup", + "lookup desc", + "name", + "name desc", + "number", + "number desc", + "personOrGroup", + "personOrGroup desc", + "readOnly", + "readOnly desc", + "required", + "required desc", + "text", + "text desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnDefinition", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.columnDefinition" + ], + "summary": "Create new navigation property to columns for sites", + "operationId": "sites.CreateColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/columns/{columnDefinition-id}": { + "get": { + "tags": [ + "sites.columnDefinition" + ], + "summary": "Get columns from sites", + "operationId": "sites.GetColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.columnDefinition" + ], + "summary": "Update the navigation property columns in sites", + "operationId": "sites.UpdateColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.columnDefinition" + ], + "summary": "Delete navigation property columns for sites", + "operationId": "sites.DeleteColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/contentTypes": { + "get": { + "tags": [ + "sites.contentType" + ], + "summary": "Get contentTypes from sites", + "operationId": "sites.ListContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "description", + "description desc", + "group", + "group desc", + "hidden", + "hidden desc", + "inheritedFrom", + "inheritedFrom desc", + "name", + "name desc", + "order", + "order desc", + "parentId", + "parentId desc", + "readOnly", + "readOnly desc", + "sealed", + "sealed desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contentType", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.contentType" + ], + "summary": "Create new navigation property to contentTypes for sites", + "operationId": "sites.CreateContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/contentTypes/{contentType-id}": { + "get": { + "tags": [ + "sites.contentType" + ], + "summary": "Get contentTypes from sites", + "operationId": "sites.GetContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.contentType" + ], + "summary": "Update the navigation property contentTypes in sites", + "operationId": "sites.UpdateContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.contentType" + ], + "summary": "Delete navigation property contentTypes for sites", + "operationId": "sites.DeleteContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks": { + "get": { + "tags": [ + "sites.contentTypes.columnLink" + ], + "summary": "Get columnLinks from sites", + "operationId": "sites.contentTypes.ListColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnLink", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.contentTypes.columnLink" + ], + "summary": "Create new navigation property to columnLinks for sites", + "operationId": "sites.contentTypes.CreateColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks" + ] + }, + "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": { + "get": { + "tags": [ + "sites.contentTypes.columnLink" + ], + "summary": "Get columnLinks from sites", + "operationId": "sites.contentTypes.GetColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.contentTypes.columnLink" + ], + "summary": "Update the navigation property columnLinks in sites", + "operationId": "sites.contentTypes.UpdateColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.contentTypes.columnLink" + ], + "summary": "Delete navigation property columnLinks for sites", + "operationId": "sites.contentTypes.DeleteColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}" + ] + }, + "/sites/{site-id}/drive": { + "get": { + "tags": [ + "sites.drive" + ], + "summary": "Get drive from sites", + "operationId": "sites.GetDrive", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.drive" + ], + "summary": "Update the navigation property drive in sites", + "operationId": "sites.UpdateDrive", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.drive" + ], + "summary": "Delete navigation property drive for sites", + "operationId": "sites.DeleteDrive", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/drives": { + "get": { + "tags": [ + "sites.drive" + ], + "summary": "Get drives from sites", + "operationId": "sites.ListDrives", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "driveType", + "driveType desc", + "owner", + "owner desc", + "quota", + "quota desc", + "sharePointIds", + "sharePointIds desc", + "system", + "system desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of drive", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.drive" + ], + "summary": "Create new navigation property to drives for sites", + "operationId": "sites.CreateDrives", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/drives/{drive-id}": { + "get": { + "tags": [ + "sites.drive" + ], + "summary": "Get drives from sites", + "operationId": "sites.GetDrives", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.drive" + ], + "summary": "Update the navigation property drives in sites", + "operationId": "sites.UpdateDrives", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.drive" + ], + "summary": "Delete navigation property drives for sites", + "operationId": "sites.DeleteDrives", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/items": { + "get": { + "tags": [ + "sites.baseItem" + ], + "summary": "Get items from sites", + "operationId": "sites.ListItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "createdByUser", + "lastModifiedByUser" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of baseItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.baseItem" + ], + "summary": "Create new navigation property to items for sites", + "operationId": "sites.CreateItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/items/{baseItem-id}": { + "get": { + "tags": [ + "sites.baseItem" + ], + "summary": "Get items from sites", + "operationId": "sites.GetItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "baseItem-id", + "in": "path", + "description": "key: id of baseItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "baseItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "createdByUser", + "lastModifiedByUser" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.baseItem" + ], + "summary": "Update the navigation property items in sites", + "operationId": "sites.UpdateItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "baseItem-id", + "in": "path", + "description": "key: id of baseItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "baseItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.baseItem" + ], + "summary": "Delete navigation property items for sites", + "operationId": "sites.DeleteItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "baseItem-id", + "in": "path", + "description": "key: id of baseItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "baseItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists": { + "get": { + "tags": [ + "sites.list" + ], + "summary": "Get lists from sites", + "operationId": "sites.ListLists", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "displayName", + "displayName desc", + "list", + "list desc", + "sharepointIds", + "sharepointIds desc", + "system", + "system desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "list", + "sharepointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of list", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.list" + ], + "summary": "Create new navigation property to lists for sites", + "operationId": "sites.CreateLists", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}": { + "get": { + "tags": [ + "sites.list" + ], + "summary": "Get lists from sites", + "operationId": "sites.GetLists", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "list", + "sharepointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "items" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.list" + ], + "summary": "Update the navigation property lists in sites", + "operationId": "sites.UpdateLists", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.list" + ], + "summary": "Delete navigation property lists for sites", + "operationId": "sites.DeleteLists", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/columns": { + "get": { + "tags": [ + "sites.lists.columnDefinition" + ], + "summary": "Get columns from sites", + "operationId": "sites.lists.ListColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "boolean", + "boolean desc", + "calculated", + "calculated desc", + "choice", + "choice desc", + "columnGroup", + "columnGroup desc", + "currency", + "currency desc", + "dateTime", + "dateTime desc", + "defaultValue", + "defaultValue desc", + "description", + "description desc", + "displayName", + "displayName desc", + "enforceUniqueValues", + "enforceUniqueValues desc", + "hidden", + "hidden desc", + "indexed", + "indexed desc", + "lookup", + "lookup desc", + "name", + "name desc", + "number", + "number desc", + "personOrGroup", + "personOrGroup desc", + "readOnly", + "readOnly desc", + "required", + "required desc", + "text", + "text desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnDefinition", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.lists.columnDefinition" + ], + "summary": "Create new navigation property to columns for sites", + "operationId": "sites.lists.CreateColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}": { + "get": { + "tags": [ + "sites.lists.columnDefinition" + ], + "summary": "Get columns from sites", + "operationId": "sites.lists.GetColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "boolean", + "calculated", + "choice", + "columnGroup", + "currency", + "dateTime", + "defaultValue", + "description", + "displayName", + "enforceUniqueValues", + "hidden", + "indexed", + "lookup", + "name", + "number", + "personOrGroup", + "readOnly", + "required", + "text" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.columnDefinition" + ], + "summary": "Update the navigation property columns in sites", + "operationId": "sites.lists.UpdateColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.columnDefinition" + ], + "summary": "Delete navigation property columns for sites", + "operationId": "sites.lists.DeleteColumns", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "columnDefinition-id", + "in": "path", + "description": "key: id of columnDefinition", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnDefinition" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/contentTypes": { + "get": { + "tags": [ + "sites.lists.contentType" + ], + "summary": "Get contentTypes from sites", + "operationId": "sites.lists.ListContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "description", + "description desc", + "group", + "group desc", + "hidden", + "hidden desc", + "inheritedFrom", + "inheritedFrom desc", + "name", + "name desc", + "order", + "order desc", + "parentId", + "parentId desc", + "readOnly", + "readOnly desc", + "sealed", + "sealed desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contentType", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.lists.contentType" + ], + "summary": "Create new navigation property to contentTypes for sites", + "operationId": "sites.lists.CreateContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}": { + "get": { + "tags": [ + "sites.lists.contentType" + ], + "summary": "Get contentTypes from sites", + "operationId": "sites.lists.GetContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "description", + "group", + "hidden", + "inheritedFrom", + "name", + "order", + "parentId", + "readOnly", + "sealed", + "columnLinks" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columnLinks" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.contentType" + ], + "summary": "Update the navigation property contentTypes in sites", + "operationId": "sites.lists.UpdateContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.contentType" + ], + "summary": "Delete navigation property contentTypes for sites", + "operationId": "sites.lists.DeleteContentTypes", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks": { + "get": { + "tags": [ + "sites.lists.contentTypes.columnLink" + ], + "summary": "Get columnLinks from sites", + "operationId": "sites.lists.contentTypes.ListColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of columnLink", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.lists.contentTypes.columnLink" + ], + "summary": "Create new navigation property to columnLinks for sites", + "operationId": "sites.lists.contentTypes.CreateColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks" + ] + }, + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": { + "get": { + "tags": [ + "sites.lists.contentTypes.columnLink" + ], + "summary": "Get columnLinks from sites", + "operationId": "sites.lists.contentTypes.GetColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.contentTypes.columnLink" + ], + "summary": "Update the navigation property columnLinks in sites", + "operationId": "sites.lists.contentTypes.UpdateColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.contentTypes.columnLink" + ], + "summary": "Delete navigation property columnLinks for sites", + "operationId": "sites.lists.contentTypes.DeleteColumnLinks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "contentType-id", + "in": "path", + "description": "key: id of contentType", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contentType" + }, + { + "name": "columnLink-id", + "in": "path", + "description": "key: id of columnLink", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "columnLink" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}" + ] + }, + "/sites/{site-id}/lists/{list-id}/drive": { + "get": { + "tags": [ + "sites.lists.drive" + ], + "summary": "Get drive from sites", + "operationId": "sites.lists.GetDrive", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.drive" + ], + "summary": "Update the navigation property drive in sites", + "operationId": "sites.lists.UpdateDrive", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.drive" + ], + "summary": "Delete navigation property drive for sites", + "operationId": "sites.lists.DeleteDrive", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items": { + "get": { + "tags": [ + "sites.lists.listItem" + ], + "summary": "Get items from sites", + "operationId": "sites.lists.ListItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "contentType", + "contentType desc", + "sharepointIds", + "sharepointIds desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.lists.listItem" + ], + "summary": "Create new navigation property to items for sites", + "operationId": "sites.lists.CreateItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}": { + "get": { + "tags": [ + "sites.lists.listItem" + ], + "summary": "Get items from sites", + "operationId": "sites.lists.GetItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.listItem" + ], + "summary": "Update the navigation property items in sites", + "operationId": "sites.lists.UpdateItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.listItem" + ], + "summary": "Delete navigation property items for sites", + "operationId": "sites.lists.DeleteItems", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem": { + "get": { + "tags": [ + "sites.lists.items.driveItem" + ], + "summary": "Get driveItem from sites", + "operationId": "sites.lists.items.GetDriveItem", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.items.driveItem" + ], + "summary": "Update the navigation property driveItem in sites", + "operationId": "sites.lists.items.UpdateDriveItem", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.items.driveItem" + ], + "summary": "Delete navigation property driveItem for sites", + "operationId": "sites.lists.items.DeleteDriveItem", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content": { + "get": { + "tags": [ + "sites.lists.items.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from sites", + "operationId": "sites.lists.items.GetDriveItemContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.lists.items.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in sites", + "operationId": "sites.lists.items.UpdateDriveItemContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields": { + "get": { + "tags": [ + "sites.lists.items.fieldValueSet" + ], + "summary": "Get fields from sites", + "operationId": "sites.lists.items.GetFields", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.items.fieldValueSet" + ], + "summary": "Update the navigation property fields in sites", + "operationId": "sites.lists.items.UpdateFields", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.items.fieldValueSet" + ], + "summary": "Delete navigation property fields for sites", + "operationId": "sites.lists.items.DeleteFields", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions": { + "get": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Get versions from sites", + "operationId": "sites.lists.items.ListVersions", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Create new navigation property to versions for sites", + "operationId": "sites.lists.items.CreateVersions", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}": { + "get": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Get versions from sites", + "operationId": "sites.lists.items.GetVersions", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Update the navigation property versions in sites", + "operationId": "sites.lists.items.UpdateVersions", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Delete navigation property versions for sites", + "operationId": "sites.lists.items.DeleteVersions", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields": { + "get": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Get fields from sites", + "operationId": "sites.lists.items.versions.GetFields", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Update the navigation property fields in sites", + "operationId": "sites.lists.items.versions.UpdateFields", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.lists.items.listItemVersion" + ], + "summary": "Delete navigation property fields for sites", + "operationId": "sites.lists.items.versions.DeleteFields", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "sites.lists.items.versions.restoreVersion", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "list-id", + "in": "path", + "description": "key: id of list", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "list" + }, + { + "name": "listItem-id", + "in": "path", + "description": "key: id of listItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/sites/{site-id}/getByPath(path={path})": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function getByPath", + "operationId": "sites.getByPath", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "path", + "in": "path", + "description": "Usage: path={path}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.site" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/sites/{site-id}/onenote": { + "get": { + "tags": [ + "sites.onenote" + ], + "summary": "Get onenote from sites", + "operationId": "sites.GetOnenote", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote" + ], + "summary": "Update the navigation property onenote in sites", + "operationId": "sites.UpdateOnenote", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote" + ], + "summary": "Delete navigation property onenote for sites", + "operationId": "sites.DeleteOnenote", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/notebooks": { + "get": { + "tags": [ + "sites.onenote.notebook" + ], + "summary": "Get notebooks from sites", + "operationId": "sites.onenote.ListNotebooks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "userRole", + "userRole desc", + "isShared", + "isShared desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc", + "links", + "links desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of notebook", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebook" + ], + "summary": "Create new navigation property to notebooks for sites", + "operationId": "sites.onenote.CreateNotebooks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}": { + "get": { + "tags": [ + "sites.onenote.notebook" + ], + "summary": "Get notebooks from sites", + "operationId": "sites.onenote.GetNotebooks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebook" + ], + "summary": "Update the navigation property notebooks in sites", + "operationId": "sites.onenote.UpdateNotebooks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebook" + ], + "summary": "Delete navigation property notebooks for sites", + "operationId": "sites.onenote.DeleteNotebooks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.notebooks.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.notebooks.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.notebooks.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.notebooks.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.notebooks.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSection from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSection in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSection for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.notebooks.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.notebooks.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.notebooks.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.notebooks.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.notebooks.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.notebooks.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.notebooks.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.notebooks.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.notebooks.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.notebooks.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.notebooks.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.notebooks.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.notebooks.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.notebooks.sections.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.notebooks.sections.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.notebooks.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.notebooks.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.notebooks.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.notebooks.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.notebooks.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.notebooks.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSection from sites", + "operationId": "sites.onenote.notebooks.sections.pages.GetParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSection in sites", + "operationId": "sites.onenote.notebooks.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSection for sites", + "operationId": "sites.onenote.notebooks.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.notebooks.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.notebooks.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.notebooks.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.notebooks.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.notebooks.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.notebooks.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.notebooks.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.notebooks.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.notebooks.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function getRecentNotebooks", + "operationId": "sites.onenote.notebooks.getRecentNotebooks", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "includePersonalNotebooks", + "in": "path", + "description": "Usage: includePersonalNotebooks={includePersonalNotebooks}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recentNotebook" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/sites/{site-id}/onenote/operations": { + "get": { + "tags": [ + "sites.onenote.onenoteOperation" + ], + "summary": "Get operations from sites", + "operationId": "sites.onenote.ListOperations", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "status", + "status desc", + "createdDateTime", + "createdDateTime desc", + "lastActionDateTime", + "lastActionDateTime desc", + "resourceLocation", + "resourceLocation desc", + "resourceId", + "resourceId desc", + "error", + "error desc", + "percentComplete", + "percentComplete desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteOperation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.onenoteOperation" + ], + "summary": "Create new navigation property to operations for sites", + "operationId": "sites.onenote.CreateOperations", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/operations/{onenoteOperation-id}": { + "get": { + "tags": [ + "sites.onenote.onenoteOperation" + ], + "summary": "Get operations from sites", + "operationId": "sites.onenote.GetOperations", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.onenoteOperation" + ], + "summary": "Update the navigation property operations in sites", + "operationId": "sites.onenote.UpdateOperations", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.onenoteOperation" + ], + "summary": "Delete navigation property operations for sites", + "operationId": "sites.onenote.DeleteOperations", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages": { + "get": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}": { + "get": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.onenotePage" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.parentNotebook.sectionGroups.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.parentNotebook.sectionGroups.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.parentNotebook.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.parentNotebook.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.pages.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.pages.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.pages.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentSection from sites", + "operationId": "sites.onenote.pages.GetParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSection in sites", + "operationId": "sites.onenote.pages.UpdateParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSection for sites", + "operationId": "sites.onenote.pages.DeleteParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.pages.parentSection.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.pages.parentSection.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.pages.parentSection.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.pages.parentSection.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.pages.parentSection.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.parentSection.pages.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.parentSection.pages.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.pages.parentSection.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.pages.parentSection.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.pages.parentSection.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentSection.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentSection.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentSection.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentSection.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentSection.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentSection.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentSection.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.pages.parentSection.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/resources": { + "get": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Get resources from sites", + "operationId": "sites.onenote.ListResources", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "content", + "content desc", + "contentUrl", + "contentUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteResource", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Create new navigation property to resources for sites", + "operationId": "sites.onenote.CreateResources", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/resources/{onenoteResource-id}": { + "get": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Get resources from sites", + "operationId": "sites.onenote.GetResources", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Update the navigation property resources in sites", + "operationId": "sites.onenote.UpdateResources", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Delete navigation property resources for sites", + "operationId": "sites.onenote.DeleteResources", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content": { + "get": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Get media content for the navigation property resources from sites", + "operationId": "sites.onenote.GetResourcesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.onenoteResource" + ], + "summary": "Update media content for the navigation property resources in sites", + "operationId": "sites.onenote.UpdateResourcesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSection from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.GetParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSection in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSection for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sectionGroups.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sectionGroups.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSection from sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSection in sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSection for sites", + "operationId": "sites.onenote.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sectionGroups.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections": { + "get": { + "tags": [ + "sites.onenote.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.onenoteSection" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "sites.onenote.onenoteSection" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.onenoteSection" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.onenoteSection" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.sections.ListPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to pages for sites", + "operationId": "sites.onenote.sections.CreatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get pages from sites", + "operationId": "sites.onenote.sections.GetPages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property pages in sites", + "operationId": "sites.onenote.sections.UpdatePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property pages for sites", + "operationId": "sites.onenote.sections.DeletePages", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get media content for the navigation property pages from sites", + "operationId": "sites.onenote.sections.GetPagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update media content for the navigation property pages in sites", + "operationId": "sites.onenote.sections.UpdatePagesContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "sites.onenote.sections.pages.copyToSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "sites.onenote.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "sites.Functions" + ], + "summary": "Invoke function preview", + "operationId": "sites.onenote.sections.pages.preview", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Get parentSection from sites", + "operationId": "sites.onenote.sections.pages.GetParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSection in sites", + "operationId": "sites.onenote.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSection for sites", + "operationId": "sites.onenote.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sections.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get parentNotebook from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in sites", + "operationId": "sites.onenote.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in sites", + "operationId": "sites.onenote.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in sites", + "operationId": "sites.onenote.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Get sections from sites", + "operationId": "sites.onenote.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in sites", + "operationId": "sites.onenote.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for sites", + "operationId": "sites.onenote.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "sites.onenote.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "sites.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "sites.onenote.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/sites/{site-id}/sites": { + "get": { + "tags": [ + "sites.site" + ], + "summary": "Get sites from sites", + "operationId": "sites.ListSites", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "displayName", + "displayName desc", + "root", + "root desc", + "sharepointIds", + "sharepointIds desc", + "siteCollection", + "siteCollection desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of site", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "sites.site" + ], + "summary": "Create new navigation property to sites for sites", + "operationId": "sites.CreateSites", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/sites/{site-id}/sites/{site-id1}": { + "get": { + "tags": [ + "sites.site" + ], + "summary": "Get sites from sites", + "operationId": "sites.GetSites", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "site-id1", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "displayName", + "root", + "sharepointIds", + "siteCollection", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "columns", + "contentTypes", + "drive", + "drives", + "items", + "lists", + "sites", + "onenote" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "sites.site" + ], + "summary": "Update the navigation property sites in sites", + "operationId": "sites.UpdateSites", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "site-id1", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "sites.site" + ], + "summary": "Delete navigation property sites for sites", + "operationId": "sites.DeleteSites", + "parameters": [ + { + "name": "site-id", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "site-id1", + "in": "path", + "description": "key: id of site", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "site" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/subscribedSkus": { + "get": { + "tags": [ + "subscribedSkus.subscribedSku" + ], + "summary": "Get entities from subscribedSkus", + "operationId": "subscribedSkus.subscribedSku.ListSubscribedSku", + "parameters": [ + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "capabilityStatus", + "capabilityStatus desc", + "consumedUnits", + "consumedUnits desc", + "prepaidUnits", + "prepaidUnits desc", + "servicePlans", + "servicePlans desc", + "skuId", + "skuId desc", + "skuPartNumber", + "skuPartNumber desc", + "appliesTo", + "appliesTo desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "capabilityStatus", + "consumedUnits", + "prepaidUnits", + "servicePlans", + "skuId", + "skuPartNumber", + "appliesTo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of subscribedSku", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.subscribedSku" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "subscribedSkus.subscribedSku" + ], + "summary": "Add new entity to subscribedSkus", + "operationId": "subscribedSkus.subscribedSku.CreateSubscribedSku", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscribedSku" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscribedSku" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/subscribedSkus/{subscribedSku-id}": { + "get": { + "tags": [ + "subscribedSkus.subscribedSku" + ], + "summary": "Get entity from subscribedSkus by key", + "operationId": "subscribedSkus.subscribedSku.GetSubscribedSku", + "parameters": [ + { + "name": "subscribedSku-id", + "in": "path", + "description": "key: id of subscribedSku", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "subscribedSku" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "capabilityStatus", + "consumedUnits", + "prepaidUnits", + "servicePlans", + "skuId", + "skuPartNumber", + "appliesTo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscribedSku" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "subscribedSkus.subscribedSku" + ], + "summary": "Update entity in subscribedSkus", + "operationId": "subscribedSkus.subscribedSku.UpdateSubscribedSku", + "parameters": [ + { + "name": "subscribedSku-id", + "in": "path", + "description": "key: id of subscribedSku", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "subscribedSku" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscribedSku" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "subscribedSkus.subscribedSku" + ], + "summary": "Delete entity from subscribedSkus", + "operationId": "subscribedSkus.subscribedSku.DeleteSubscribedSku", + "parameters": [ + { + "name": "subscribedSku-id", + "in": "path", + "description": "key: id of subscribedSku", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "subscribedSku" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/subscriptions": { + "get": { + "tags": [ + "subscriptions.subscription" + ], + "summary": "Get entities from subscriptions", + "operationId": "subscriptions.subscription.ListSubscription", + "parameters": [ + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "resource", + "changeType", + "clientState", + "notificationUrl", + "expirationDateTime", + "applicationId", + "creatorId" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of subscription", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.subscription" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "subscriptions.subscription" + ], + "summary": "Add new entity to subscriptions", + "operationId": "subscriptions.subscription.CreateSubscription", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscription" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscription" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/subscriptions/{subscription-id}": { + "get": { + "tags": [ + "subscriptions.subscription" + ], + "summary": "Get entity from subscriptions by key", + "operationId": "subscriptions.subscription.GetSubscription", + "parameters": [ + { + "name": "subscription-id", + "in": "path", + "description": "key: id of subscription", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "subscription" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "resource", + "changeType", + "clientState", + "notificationUrl", + "expirationDateTime", + "applicationId", + "creatorId" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscription" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "subscriptions.subscription" + ], + "summary": "Update entity in subscriptions", + "operationId": "subscriptions.subscription.UpdateSubscription", + "parameters": [ + { + "name": "subscription-id", + "in": "path", + "description": "key: id of subscription", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "subscription" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.subscription" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "subscriptions.subscription" + ], + "summary": "Delete entity from subscriptions", + "operationId": "subscriptions.subscription.DeleteSubscription", + "parameters": [ + { + "name": "subscription-id", + "in": "path", + "description": "key: id of subscription", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "subscription" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users": { + "get": { + "tags": [ + "users.user" + ], + "summary": "Get entities from users", + "operationId": "users.user.ListUser", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc", + "accountEnabled", + "accountEnabled desc", + "ageGroup", + "ageGroup desc", + "assignedLicenses", + "assignedLicenses desc", + "assignedPlans", + "assignedPlans desc", + "businessPhones", + "businessPhones desc", + "city", + "city desc", + "companyName", + "companyName desc", + "consentProvidedForMinor", + "consentProvidedForMinor desc", + "country", + "country desc", + "department", + "department desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "imAddresses", + "imAddresses desc", + "jobTitle", + "jobTitle desc", + "legalAgeGroupClassification", + "legalAgeGroupClassification desc", + "mail", + "mail desc", + "mailNickname", + "mailNickname desc", + "mobilePhone", + "mobilePhone desc", + "onPremisesExtensionAttributes", + "onPremisesExtensionAttributes desc", + "onPremisesImmutableId", + "onPremisesImmutableId desc", + "onPremisesLastSyncDateTime", + "onPremisesLastSyncDateTime desc", + "onPremisesProvisioningErrors", + "onPremisesProvisioningErrors desc", + "onPremisesSecurityIdentifier", + "onPremisesSecurityIdentifier desc", + "onPremisesSyncEnabled", + "onPremisesSyncEnabled desc", + "onPremisesDomainName", + "onPremisesDomainName desc", + "onPremisesSamAccountName", + "onPremisesSamAccountName desc", + "onPremisesUserPrincipalName", + "onPremisesUserPrincipalName desc", + "passwordPolicies", + "passwordPolicies desc", + "passwordProfile", + "passwordProfile desc", + "officeLocation", + "officeLocation desc", + "postalCode", + "postalCode desc", + "preferredLanguage", + "preferredLanguage desc", + "provisionedPlans", + "provisionedPlans desc", + "proxyAddresses", + "proxyAddresses desc", + "state", + "state desc", + "streetAddress", + "streetAddress desc", + "surname", + "surname desc", + "usageLocation", + "usageLocation desc", + "userPrincipalName", + "userPrincipalName desc", + "userType", + "userType desc", + "mailboxSettings", + "mailboxSettings desc", + "aboutMe", + "aboutMe desc", + "birthday", + "birthday desc", + "hireDate", + "hireDate desc", + "interests", + "interests desc", + "mySite", + "mySite desc", + "pastProjects", + "pastProjects desc", + "preferredName", + "preferredName desc", + "responsibilities", + "responsibilities desc", + "schools", + "schools desc", + "skills", + "skills desc", + "deviceEnrollmentLimit", + "deviceEnrollmentLimit desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "ageGroup", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "city", + "companyName", + "consentProvidedForMinor", + "country", + "department", + "displayName", + "givenName", + "imAddresses", + "jobTitle", + "legalAgeGroupClassification", + "mail", + "mailNickname", + "mobilePhone", + "onPremisesExtensionAttributes", + "onPremisesImmutableId", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "onPremisesDomainName", + "onPremisesSamAccountName", + "onPremisesUserPrincipalName", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "postalCode", + "preferredLanguage", + "provisionedPlans", + "proxyAddresses", + "state", + "streetAddress", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "mailboxSettings", + "aboutMe", + "birthday", + "hireDate", + "interests", + "mySite", + "pastProjects", + "preferredName", + "responsibilities", + "schools", + "skills", + "deviceEnrollmentLimit", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of user", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "users.user" + ], + "summary": "Add new entity to users", + "operationId": "users.user.CreateUser", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}": { + "get": { + "tags": [ + "users.user" + ], + "summary": "Get entity from users by key", + "operationId": "users.user.GetUser", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime", + "accountEnabled", + "ageGroup", + "assignedLicenses", + "assignedPlans", + "businessPhones", + "city", + "companyName", + "consentProvidedForMinor", + "country", + "department", + "displayName", + "givenName", + "imAddresses", + "jobTitle", + "legalAgeGroupClassification", + "mail", + "mailNickname", + "mobilePhone", + "onPremisesExtensionAttributes", + "onPremisesImmutableId", + "onPremisesLastSyncDateTime", + "onPremisesProvisioningErrors", + "onPremisesSecurityIdentifier", + "onPremisesSyncEnabled", + "onPremisesDomainName", + "onPremisesSamAccountName", + "onPremisesUserPrincipalName", + "passwordPolicies", + "passwordProfile", + "officeLocation", + "postalCode", + "preferredLanguage", + "provisionedPlans", + "proxyAddresses", + "state", + "streetAddress", + "surname", + "usageLocation", + "userPrincipalName", + "userType", + "mailboxSettings", + "aboutMe", + "birthday", + "hireDate", + "interests", + "mySite", + "pastProjects", + "preferredName", + "responsibilities", + "schools", + "skills", + "deviceEnrollmentLimit", + "ownedDevices", + "registeredDevices", + "manager", + "directReports", + "memberOf", + "createdObjects", + "ownedObjects", + "licenseDetails", + "extensions", + "outlook", + "messages", + "mailFolders", + "calendar", + "calendars", + "calendarGroups", + "calendarView", + "events", + "people", + "contacts", + "contactFolders", + "inferenceClassification", + "photo", + "photos", + "drive", + "drives", + "planner", + "onenote", + "managedDevices", + "managedAppRegistrations", + "deviceManagementTroubleshootingEvents", + "activities", + "insights", + "settings" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.user" + ], + "summary": "Update entity in users", + "operationId": "users.user.UpdateUser", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.user" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.user" + ], + "summary": "Delete entity from users", + "operationId": "users.user.DeleteUser", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities": { + "get": { + "tags": [ + "users.userActivity" + ], + "summary": "Get activities from users", + "operationId": "users.ListActivities", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "visualElements", + "visualElements desc", + "activitySourceHost", + "activitySourceHost desc", + "activationUrl", + "activationUrl desc", + "appActivityId", + "appActivityId desc", + "appDisplayName", + "appDisplayName desc", + "contentUrl", + "contentUrl desc", + "createdDateTime", + "createdDateTime desc", + "expirationDateTime", + "expirationDateTime desc", + "fallbackUrl", + "fallbackUrl desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "userTimezone", + "userTimezone desc", + "contentInfo", + "contentInfo desc", + "status", + "status desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visualElements", + "activitySourceHost", + "activationUrl", + "appActivityId", + "appDisplayName", + "contentUrl", + "createdDateTime", + "expirationDateTime", + "fallbackUrl", + "lastModifiedDateTime", + "userTimezone", + "contentInfo", + "status", + "historyItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "historyItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of userActivity", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.userActivity" + ], + "summary": "Create new navigation property to activities for users", + "operationId": "users.CreateActivities", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities/{userActivity-id}": { + "get": { + "tags": [ + "users.userActivity" + ], + "summary": "Get activities from users", + "operationId": "users.GetActivities", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visualElements", + "activitySourceHost", + "activationUrl", + "appActivityId", + "appDisplayName", + "contentUrl", + "createdDateTime", + "expirationDateTime", + "fallbackUrl", + "lastModifiedDateTime", + "userTimezone", + "contentInfo", + "status", + "historyItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "historyItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.userActivity" + ], + "summary": "Update the navigation property activities in users", + "operationId": "users.UpdateActivities", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.userActivity" + ], + "summary": "Delete navigation property activities for users", + "operationId": "users.DeleteActivities", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities/{userActivity-id}/historyItems": { + "get": { + "tags": [ + "users.activities.activityHistoryItem" + ], + "summary": "Get historyItems from users", + "operationId": "users.activities.ListHistoryItems", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "status", + "status desc", + "activeDurationSeconds", + "activeDurationSeconds desc", + "createdDateTime", + "createdDateTime desc", + "lastActiveDateTime", + "lastActiveDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "expirationDateTime", + "expirationDateTime desc", + "startedDateTime", + "startedDateTime desc", + "userTimezone", + "userTimezone desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "activeDurationSeconds", + "createdDateTime", + "lastActiveDateTime", + "lastModifiedDateTime", + "expirationDateTime", + "startedDateTime", + "userTimezone", + "activity" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "activity" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of activityHistoryItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.activities.activityHistoryItem" + ], + "summary": "Create new navigation property to historyItems for users", + "operationId": "users.activities.CreateHistoryItems", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}": { + "get": { + "tags": [ + "users.activities.activityHistoryItem" + ], + "summary": "Get historyItems from users", + "operationId": "users.activities.GetHistoryItems", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "activeDurationSeconds", + "createdDateTime", + "lastActiveDateTime", + "lastModifiedDateTime", + "expirationDateTime", + "startedDateTime", + "userTimezone", + "activity" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "activity" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.activities.activityHistoryItem" + ], + "summary": "Update the navigation property historyItems in users", + "operationId": "users.activities.UpdateHistoryItems", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.activities.activityHistoryItem" + ], + "summary": "Delete navigation property historyItems for users", + "operationId": "users.activities.DeleteHistoryItems", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity": { + "get": { + "tags": [ + "users.activities.historyItems.userActivity" + ], + "summary": "Get activity from users", + "operationId": "users.activities.historyItems.GetActivity", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visualElements", + "activitySourceHost", + "activationUrl", + "appActivityId", + "appDisplayName", + "contentUrl", + "createdDateTime", + "expirationDateTime", + "fallbackUrl", + "lastModifiedDateTime", + "userTimezone", + "contentInfo", + "status", + "historyItems" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "historyItems" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref": { + "get": { + "tags": [ + "users.activities.historyItems.userActivity" + ], + "summary": "Get ref of activity from users", + "operationId": "users.activities.historyItems.GetRefActivity", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.activities.historyItems.userActivity" + ], + "summary": "Update the ref of navigation property activity in users", + "operationId": "users.activities.historyItems.UpdateRefActivity", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.activities.historyItems.userActivity" + ], + "summary": "Delete ref of navigation property activity for users", + "operationId": "users.activities.historyItems.DeleteRefActivity", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "userActivity-id", + "in": "path", + "description": "key: id of userActivity", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "userActivity" + }, + { + "name": "activityHistoryItem-id", + "in": "path", + "description": "key: id of activityHistoryItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "activityHistoryItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/activities/recent()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function recent", + "operationId": "users.activities.recent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/calendar": { + "get": { + "tags": [ + "users.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendar/calendarView": { + "get": { + "tags": [ + "users.calendar.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendar.ListCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.event" + ], + "summary": "Create new navigation property to calendarView for users", + "operationId": "users.calendar.CreateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView", + "/users/{user-id}/events/{event-id}/calendar/calendarView" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}": { + "get": { + "tags": [ + "users.calendar.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendar.GetCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.event" + ], + "summary": "Update the navigation property calendarView in users", + "operationId": "users.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.event" + ], + "summary": "Delete navigation property calendarView for users", + "operationId": "users.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendar.calendarView.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendar.calendarView.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendar.calendarView.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendar.calendarView.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendar.calendarView.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendar.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendar.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendar.calendarView.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.calendar.calendarView.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendar.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendar.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendar.calendarView.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendar.calendarView.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendar.calendarView.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendar.calendarView.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendar.calendarView.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.calendarView.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendar.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.calendarView.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendar.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "users.calendar.calendarView.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendar.calendarView.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.calendarView.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendar.calendarView.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendar.calendarView.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendar.calendarView.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.calendarView.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendar.calendarView.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.calendarView.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendar.calendarView.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendar.calendarView.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendar.calendarView.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendar.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendar.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendar.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendar.calendarView.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendar.calendarView.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendar.calendarView.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendar.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendar.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendar.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendar.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendar.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendar.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendar.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendar.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendar.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendar.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendar.calendarView.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendar/events": { + "get": { + "tags": [ + "users.calendar.event" + ], + "summary": "Get events from users", + "operationId": "users.calendar.ListEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.event" + ], + "summary": "Create new navigation property to events for users", + "operationId": "users.calendar.CreateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendarView/{event-id}/calendar/events", + "/users/{user-id}/events/{event-id}/calendar/events" + ] + }, + "/users/{user-id}/calendar/events/{event-id}": { + "get": { + "tags": [ + "users.calendar.event" + ], + "summary": "Get events from users", + "operationId": "users.calendar.GetEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.event" + ], + "summary": "Update the navigation property events in users", + "operationId": "users.calendar.UpdateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.event" + ], + "summary": "Delete navigation property events for users", + "operationId": "users.calendar.DeleteEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendar.events.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendar.events.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.events.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendar.events.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendar.events.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendar.events.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.events.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendar.events.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.events.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendar.events.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendar.events.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.calendar.events.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.events.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendar.events.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.events.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendar.events.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendar.events.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendar.events.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.events.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendar.events.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendar.events.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendar.events.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.events.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendar.events.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.events.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendar.events.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances": { + "get": { + "tags": [ + "users.calendar.events.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendar.events.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.events.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendar.events.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendar.events.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendar.events.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.events.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendar.events.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.events.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendar.events.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendar.events.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendar.events.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendar.events.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendar.events.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendar.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendar.events.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendar.events.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendar.events.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendar.events.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendar.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendar.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendar.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendar.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendar.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendar.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendar.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendar.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendar.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendar.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendar/events/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendar.events.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarGroups": { + "get": { + "tags": [ + "users.calendarGroup" + ], + "summary": "Get calendarGroups from users", + "operationId": "users.ListCalendarGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "classId", + "classId desc", + "changeKey", + "changeKey desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "classId", + "changeKey", + "calendars" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of calendarGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroup" + ], + "summary": "Create new navigation property to calendarGroups for users", + "operationId": "users.CreateCalendarGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}": { + "get": { + "tags": [ + "users.calendarGroup" + ], + "summary": "Get calendarGroups from users", + "operationId": "users.GetCalendarGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "classId", + "changeKey", + "calendars" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroup" + ], + "summary": "Update the navigation property calendarGroups in users", + "operationId": "users.UpdateCalendarGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroup" + ], + "summary": "Delete navigation property calendarGroups for users", + "operationId": "users.DeleteCalendarGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars": { + "get": { + "tags": [ + "users.calendarGroups.calendar" + ], + "summary": "Get calendars from users", + "operationId": "users.calendarGroups.ListCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "color", + "color desc", + "changeKey", + "changeKey desc", + "canShare", + "canShare desc", + "canViewPrivateItems", + "canViewPrivateItems desc", + "canEdit", + "canEdit desc", + "owner", + "owner desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of calendar", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendar" + ], + "summary": "Create new navigation property to calendars for users", + "operationId": "users.calendarGroups.CreateCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendar" + ], + "summary": "Get calendars from users", + "operationId": "users.calendarGroups.GetCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendar" + ], + "summary": "Update the navigation property calendars in users", + "operationId": "users.calendarGroups.UpdateCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendar" + ], + "summary": "Delete navigation property calendars for users", + "operationId": "users.calendarGroups.DeleteCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendarGroups.calendars.ListCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to calendarView for users", + "operationId": "users.calendarGroups.calendars.CreateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView", + "/users/{user-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView", + "/users/{user-id}/events/{event-id}/calendar/calendarView" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendarGroups.calendars.GetCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property calendarView in users", + "operationId": "users.calendarGroups.calendars.UpdateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property calendarView for users", + "operationId": "users.calendarGroups.calendars.DeleteCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get attachments from users", + "operationId": "users.calendarGroups.calendars.calendarView.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendarGroups.calendars.calendarView.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get attachments from users", + "operationId": "users.calendarGroups.calendars.calendarView.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendarGroups.calendars.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendarGroups.calendars.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get calendar from users", + "operationId": "users.calendarGroups.calendars.calendarView.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendarGroups.calendars.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendarGroups.calendars.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get extensions from users", + "operationId": "users.calendarGroups.calendars.calendarView.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendarGroups.calendars.calendarView.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get extensions from users", + "operationId": "users.calendarGroups.calendars.calendarView.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendarGroups.calendars.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendarGroups.calendars.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendarGroups.calendars.calendarView.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendarGroups.calendars.calendarView.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendarGroups.calendars.calendarView.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendarGroups.calendars.calendarView.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendarGroups.calendars.calendarView.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarGroups.calendars.calendarView.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarGroups.calendars.calendarView.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarGroups.calendars.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarGroups.calendars.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarGroups.calendars.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarGroups.calendars.calendarView.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarGroups.calendars.calendarView.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarGroups.calendars.calendarView.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarGroups.calendars.calendarView.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarGroups.calendars.calendarView.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarGroups.calendars.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendarGroups.calendars.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendarGroups.calendars.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarGroups.calendars.calendarView.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get events from users", + "operationId": "users.calendarGroups.calendars.ListEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to events for users", + "operationId": "users.calendarGroups.calendars.CreateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events", + "/users/{user-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendarView/{event-id}/calendar/events", + "/users/{user-id}/events/{event-id}/calendar/events" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get events from users", + "operationId": "users.calendarGroups.calendars.GetEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property events in users", + "operationId": "users.calendarGroups.calendars.UpdateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property events for users", + "operationId": "users.calendarGroups.calendars.DeleteEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get attachments from users", + "operationId": "users.calendarGroups.calendars.events.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendarGroups.calendars.events.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get attachments from users", + "operationId": "users.calendarGroups.calendars.events.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendarGroups.calendars.events.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendarGroups.calendars.events.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get calendar from users", + "operationId": "users.calendarGroups.calendars.events.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendarGroups.calendars.events.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendarGroups.calendars.events.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get extensions from users", + "operationId": "users.calendarGroups.calendars.events.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendarGroups.calendars.events.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get extensions from users", + "operationId": "users.calendarGroups.calendars.events.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendarGroups.calendars.events.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendarGroups.calendars.events.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendarGroups.calendars.events.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendarGroups.calendars.events.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendarGroups.calendars.events.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendarGroups.calendars.events.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendarGroups.calendars.events.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarGroups.calendars.events.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarGroups.calendars.events.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarGroups.calendars.events.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarGroups.calendars.events.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarGroups.calendars.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarGroups.calendars.events.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarGroups.calendars.events.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarGroups.calendars.events.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarGroups.calendars.events.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarGroups.calendars.events.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarGroups.calendars.events.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendarGroups.calendars.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendarGroups.calendars.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.event" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarGroups.calendars.events.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendarGroups.calendars.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarGroups.calendars.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendarGroups.calendars.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarGroups.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendarGroups.calendars.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendarGroup-id", + "in": "path", + "description": "key: id of calendarGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendarGroup" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendars": { + "get": { + "tags": [ + "users.calendar" + ], + "summary": "Get calendars from users", + "operationId": "users.ListCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "color", + "color desc", + "changeKey", + "changeKey desc", + "canShare", + "canShare desc", + "canViewPrivateItems", + "canViewPrivateItems desc", + "canEdit", + "canEdit desc", + "owner", + "owner desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of calendar", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendar" + ], + "summary": "Create new navigation property to calendars for users", + "operationId": "users.CreateCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendars/{calendar-id}": { + "get": { + "tags": [ + "users.calendar" + ], + "summary": "Get calendars from users", + "operationId": "users.GetCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendar" + ], + "summary": "Update the navigation property calendars in users", + "operationId": "users.UpdateCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendar" + ], + "summary": "Delete navigation property calendars for users", + "operationId": "users.DeleteCalendars", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView": { + "get": { + "tags": [ + "users.calendars.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendars.ListCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.event" + ], + "summary": "Create new navigation property to calendarView for users", + "operationId": "users.calendars.CreateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView", + "/users/{user-id}/events/{event-id}/calendar/calendarView" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}": { + "get": { + "tags": [ + "users.calendars.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendars.GetCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.event" + ], + "summary": "Update the navigation property calendarView in users", + "operationId": "users.calendars.UpdateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.event" + ], + "summary": "Delete navigation property calendarView for users", + "operationId": "users.calendars.DeleteCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendars.calendarView.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendars.calendarView.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendars.calendarView.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendars.calendarView.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendars.calendarView.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendars.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendars.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendars.calendarView.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.calendars.calendarView.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendars.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendars.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendars.calendarView.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendars.calendarView.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendars.calendarView.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendars.calendarView.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendars.calendarView.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.calendarView.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendars.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.calendarView.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendars.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "users.calendars.calendarView.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendars.calendarView.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.calendarView.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendars.calendarView.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendars.calendarView.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendars.calendarView.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.calendarView.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendars.calendarView.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.calendarView.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendars.calendarView.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendars.calendarView.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendars.calendarView.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendars.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendars.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendars.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendars.calendarView.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendars.calendarView.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendars.calendarView.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendars.calendarView.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendars.calendarView.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendars.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendars.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendars.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendars.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendars.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendars.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendars.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendars.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendars.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendars.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendars.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendars.calendarView.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events": { + "get": { + "tags": [ + "users.calendars.event" + ], + "summary": "Get events from users", + "operationId": "users.calendars.ListEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.event" + ], + "summary": "Create new navigation property to events for users", + "operationId": "users.calendars.CreateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendarView/{event-id}/calendar/events", + "/users/{user-id}/events/{event-id}/calendar/events" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}": { + "get": { + "tags": [ + "users.calendars.event" + ], + "summary": "Get events from users", + "operationId": "users.calendars.GetEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.event" + ], + "summary": "Update the navigation property events in users", + "operationId": "users.calendars.UpdateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.event" + ], + "summary": "Delete navigation property events for users", + "operationId": "users.calendars.DeleteEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendars.events.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendars.events.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.events.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendars.events.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendars.events.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendars.events.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.events.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendars.events.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.events.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendars.events.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendars.events.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.calendars.events.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.events.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendars.events.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.events.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendars.events.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendars.events.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendars.events.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.events.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendars.events.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendars.events.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendars.events.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.events.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendars.events.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.events.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendars.events.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances": { + "get": { + "tags": [ + "users.calendars.events.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendars.events.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.events.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendars.events.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendars.events.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendars.events.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.events.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendars.events.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.events.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendars.events.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendars.events.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendars.events.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendars.events.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendars.events.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendars.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendars.events.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendars.events.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendars.events.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendars.events.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendars.events.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendars.events.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendars.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendars.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendars.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendars.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendars.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendars.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendars.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendars.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendars.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendars.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/events/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendars.events.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendars.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendars.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendars.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendars.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendars.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendars.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendars.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendars.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendars.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendars.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendars.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "calendar-id", + "in": "path", + "description": "key: id of calendar", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "calendar" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarView": { + "get": { + "tags": [ + "users.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.ListCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.event" + ], + "summary": "Create new navigation property to calendarView for users", + "operationId": "users.CreateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendarView/{event-id}": { + "get": { + "tags": [ + "users.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.GetCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.event" + ], + "summary": "Update the navigation property calendarView in users", + "operationId": "users.UpdateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.event" + ], + "summary": "Delete navigation property calendarView for users", + "operationId": "users.DeleteCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/calendarView/{event-id}/attachments": { + "get": { + "tags": [ + "users.calendarView.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendarView.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.calendarView.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/events/{event-id}/attachments" + ] + }, + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.calendarView.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.calendarView.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.calendarView.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.calendarView.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar": { + "get": { + "tags": [ + "users.calendarView.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.calendarView.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.calendarView.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.calendarView.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/events/{event-id}/calendar" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView": { + "get": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendarView.calendar.ListCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Create new navigation property to calendarView for users", + "operationId": "users.calendarView.calendar.CreateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/events/{event-id}/calendar/calendarView" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}": { + "get": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.calendarView.calendar.GetCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Update the navigation property calendarView in users", + "operationId": "users.calendarView.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Delete navigation property calendarView for users", + "operationId": "users.calendarView.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarView.calendar.calendarView.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarView.calendar.calendarView.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarView.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarView.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarView.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarView.calendar.calendarView.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events": { + "get": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Get events from users", + "operationId": "users.calendarView.calendar.ListEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Create new navigation property to events for users", + "operationId": "users.calendarView.calendar.CreateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendars/{calendar-id}/events", + "/users/{user-id}/events/{event-id}/calendar/events" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}": { + "get": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Get events from users", + "operationId": "users.calendarView.calendar.GetEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Update the navigation property events in users", + "operationId": "users.calendarView.calendar.UpdateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.calendar.event" + ], + "summary": "Delete navigation property events for users", + "operationId": "users.calendarView.calendar.DeleteEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarView.calendar.events.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarView.calendar.events.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarView.calendar.events.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarView.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarView.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarView.calendar.events.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarView.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendarView.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarView.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendarView.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendarView.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarView.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendarView.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarView.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendarView.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendarView.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/extensions": { + "get": { + "tags": [ + "users.calendarView.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendarView.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.calendarView.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/events/{event-id}/extensions" + ] + }, + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.calendarView.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.calendarView.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.calendarView.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.calendarView.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/events/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances": { + "get": { + "tags": [ + "users.calendarView.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendarView.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.calendarView.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/events/{event-id}/instances" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.calendarView.event" + ], + "summary": "Get instances from users", + "operationId": "users.calendarView.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.calendarView.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.calendarView.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/events/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarView.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarView.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarView.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarView.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarView.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarView.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/calendarView/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.calendarView.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.calendarView.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/calendarView/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.calendarView.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.calendarView.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarView.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.calendarView.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.calendarView.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.calendarView.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.calendarView.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarView.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.calendarView.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.calendarView.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.calendarView.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.calendarView.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.calendarView.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/calendarView/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.calendarView.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/contactFolders": { + "get": { + "tags": [ + "users.contactFolder" + ], + "summary": "Get contactFolders from users", + "operationId": "users.ListContactFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "parentFolderId", + "parentFolderId desc", + "displayName", + "displayName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contactFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolder" + ], + "summary": "Create new navigation property to contactFolders for users", + "operationId": "users.CreateContactFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}": { + "get": { + "tags": [ + "users.contactFolder" + ], + "summary": "Get contactFolders from users", + "operationId": "users.GetContactFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolder" + ], + "summary": "Update the navigation property contactFolders in users", + "operationId": "users.UpdateContactFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolder" + ], + "summary": "Delete navigation property contactFolders for users", + "operationId": "users.DeleteContactFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders": { + "get": { + "tags": [ + "users.contactFolders.contactFolder" + ], + "summary": "Get childFolders from users", + "operationId": "users.contactFolders.ListChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "parentFolderId", + "parentFolderId desc", + "displayName", + "displayName desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contactFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.contactFolder" + ], + "summary": "Create new navigation property to childFolders for users", + "operationId": "users.contactFolders.CreateChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}": { + "get": { + "tags": [ + "users.contactFolders.contactFolder" + ], + "summary": "Get childFolders from users", + "operationId": "users.contactFolders.GetChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contactFolder-id1", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "parentFolderId", + "displayName", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "contacts", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.contactFolder" + ], + "summary": "Update the navigation property childFolders in users", + "operationId": "users.contactFolders.UpdateChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contactFolder-id1", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.contactFolder" + ], + "summary": "Delete navigation property childFolders for users", + "operationId": "users.contactFolders.DeleteChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contactFolder-id1", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.contactFolders.childFolders.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts": { + "get": { + "tags": [ + "users.contactFolders.contact" + ], + "summary": "Get contacts from users", + "operationId": "users.contactFolders.ListContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "parentFolderId", + "parentFolderId desc", + "birthday", + "birthday desc", + "fileAs", + "fileAs desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "initials", + "initials desc", + "middleName", + "middleName desc", + "nickName", + "nickName desc", + "surname", + "surname desc", + "title", + "title desc", + "yomiGivenName", + "yomiGivenName desc", + "yomiSurname", + "yomiSurname desc", + "yomiCompanyName", + "yomiCompanyName desc", + "generation", + "generation desc", + "emailAddresses", + "emailAddresses desc", + "imAddresses", + "imAddresses desc", + "jobTitle", + "jobTitle desc", + "companyName", + "companyName desc", + "department", + "department desc", + "officeLocation", + "officeLocation desc", + "profession", + "profession desc", + "businessHomePage", + "businessHomePage desc", + "assistantName", + "assistantName desc", + "manager", + "manager desc", + "homePhones", + "homePhones desc", + "mobilePhone", + "mobilePhone desc", + "businessPhones", + "businessPhones desc", + "homeAddress", + "homeAddress desc", + "businessAddress", + "businessAddress desc", + "otherAddress", + "otherAddress desc", + "spouseName", + "spouseName desc", + "personalNotes", + "personalNotes desc", + "children", + "children desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contact", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.contact" + ], + "summary": "Create new navigation property to contacts for users", + "operationId": "users.contactFolders.CreateContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}": { + "get": { + "tags": [ + "users.contactFolders.contact" + ], + "summary": "Get contacts from users", + "operationId": "users.contactFolders.GetContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.contact" + ], + "summary": "Update the navigation property contacts in users", + "operationId": "users.contactFolders.UpdateContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.contact" + ], + "summary": "Delete navigation property contacts for users", + "operationId": "users.contactFolders.DeleteContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions": { + "get": { + "tags": [ + "users.contactFolders.contacts.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.contactFolders.contacts.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.contacts.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.contactFolders.contacts.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/extensions" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.contactFolders.contacts.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.contactFolders.contacts.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.contacts.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.contactFolders.contacts.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.contacts.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.contactFolders.contacts.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.contactFolders.contacts.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.contactFolders.contacts.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.contactFolders.contacts.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.contactFolders.contacts.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.contactFolders.contacts.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo": { + "get": { + "tags": [ + "users.contactFolders.contacts.profilePhoto" + ], + "summary": "Get photo from users", + "operationId": "users.contactFolders.contacts.GetPhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.contacts.profilePhoto" + ], + "summary": "Update the navigation property photo in users", + "operationId": "users.contactFolders.contacts.UpdatePhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.contacts.profilePhoto" + ], + "summary": "Delete navigation property photo for users", + "operationId": "users.contactFolders.contacts.DeletePhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/photo" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value": { + "get": { + "tags": [ + "users.contactFolders.contacts.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from users", + "operationId": "users.contactFolders.contacts.GetPhotoContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.contactFolders.contacts.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in users", + "operationId": "users.contactFolders.contacts.UpdatePhotoContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.contactFolders.contacts.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.contactFolders.contacts.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.contactFolders.contacts.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.contactFolders.contacts.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.contactFolders.contacts.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.contactFolders.contacts.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.contactFolders.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.contactFolders.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.contactFolders.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.contactFolders.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.contactFolders.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.contactFolders.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.contactFolders.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.contactFolders.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.contactFolders.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contactFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.contactFolders.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contactFolder-id", + "in": "path", + "description": "key: id of contactFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contactFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contactFolders/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.contactFolders.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/contacts": { + "get": { + "tags": [ + "users.contact" + ], + "summary": "Get contacts from users", + "operationId": "users.ListContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "parentFolderId", + "parentFolderId desc", + "birthday", + "birthday desc", + "fileAs", + "fileAs desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "initials", + "initials desc", + "middleName", + "middleName desc", + "nickName", + "nickName desc", + "surname", + "surname desc", + "title", + "title desc", + "yomiGivenName", + "yomiGivenName desc", + "yomiSurname", + "yomiSurname desc", + "yomiCompanyName", + "yomiCompanyName desc", + "generation", + "generation desc", + "emailAddresses", + "emailAddresses desc", + "imAddresses", + "imAddresses desc", + "jobTitle", + "jobTitle desc", + "companyName", + "companyName desc", + "department", + "department desc", + "officeLocation", + "officeLocation desc", + "profession", + "profession desc", + "businessHomePage", + "businessHomePage desc", + "assistantName", + "assistantName desc", + "manager", + "manager desc", + "homePhones", + "homePhones desc", + "mobilePhone", + "mobilePhone desc", + "businessPhones", + "businessPhones desc", + "homeAddress", + "homeAddress desc", + "businessAddress", + "businessAddress desc", + "otherAddress", + "otherAddress desc", + "spouseName", + "spouseName desc", + "personalNotes", + "personalNotes desc", + "children", + "children desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of contact", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contact" + ], + "summary": "Create new navigation property to contacts for users", + "operationId": "users.CreateContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contacts/{contact-id}": { + "get": { + "tags": [ + "users.contact" + ], + "summary": "Get contacts from users", + "operationId": "users.GetContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "parentFolderId", + "birthday", + "fileAs", + "displayName", + "givenName", + "initials", + "middleName", + "nickName", + "surname", + "title", + "yomiGivenName", + "yomiSurname", + "yomiCompanyName", + "generation", + "emailAddresses", + "imAddresses", + "jobTitle", + "companyName", + "department", + "officeLocation", + "profession", + "businessHomePage", + "assistantName", + "manager", + "homePhones", + "mobilePhone", + "businessPhones", + "homeAddress", + "businessAddress", + "otherAddress", + "spouseName", + "personalNotes", + "children", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties", + "photo" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contact" + ], + "summary": "Update the navigation property contacts in users", + "operationId": "users.UpdateContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contact" + ], + "summary": "Delete navigation property contacts for users", + "operationId": "users.DeleteContacts", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contacts/{contact-id}/extensions": { + "get": { + "tags": [ + "users.contacts.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.contacts.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contacts.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.contacts.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions" + ] + }, + "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.contacts.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.contacts.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contacts.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.contacts.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contacts.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.contacts.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.contacts.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.contacts.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.contacts.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.contacts.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contacts.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.contacts.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/contacts/{contact-id}/photo": { + "get": { + "tags": [ + "users.contacts.profilePhoto" + ], + "summary": "Get photo from users", + "operationId": "users.contacts.GetPhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contacts.profilePhoto" + ], + "summary": "Update the navigation property photo in users", + "operationId": "users.contacts.UpdatePhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contacts.profilePhoto" + ], + "summary": "Delete navigation property photo for users", + "operationId": "users.contacts.DeletePhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo" + ] + }, + "/users/{user-id}/contacts/{contact-id}/photo/$value": { + "get": { + "tags": [ + "users.contacts.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from users", + "operationId": "users.contacts.GetPhotoContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.contacts.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in users", + "operationId": "users.contacts.UpdatePhotoContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.contacts.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.contacts.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.contacts.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.contacts.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.contacts.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.contacts.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "contact-id", + "in": "path", + "description": "key: id of contact", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "contact" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/contacts/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.contacts.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/createdObjects": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get createdObjects from users", + "operationId": "users.ListCreatedObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/createdObjects/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of createdObjects from users", + "operationId": "users.ListRefCreatedObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.directoryObject" + ], + "summary": "Create new navigation property ref to createdObjects for users", + "operationId": "users.CreateRefCreatedObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/deviceManagementTroubleshootingEvents": { + "get": { + "tags": [ + "users.deviceManagementTroubleshootingEvent" + ], + "summary": "Get deviceManagementTroubleshootingEvents from users", + "operationId": "users.ListDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "eventDateTime", + "eventDateTime desc", + "correlationId", + "correlationId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "eventDateTime", + "correlationId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceManagementTroubleshootingEvent", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.deviceManagementTroubleshootingEvent" + ], + "summary": "Create new navigation property to deviceManagementTroubleshootingEvents for users", + "operationId": "users.CreateDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": { + "get": { + "tags": [ + "users.deviceManagementTroubleshootingEvent" + ], + "summary": "Get deviceManagementTroubleshootingEvents from users", + "operationId": "users.GetDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "eventDateTime", + "correlationId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.deviceManagementTroubleshootingEvent" + ], + "summary": "Update the navigation property deviceManagementTroubleshootingEvents in users", + "operationId": "users.UpdateDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.deviceManagementTroubleshootingEvent" + ], + "summary": "Delete navigation property deviceManagementTroubleshootingEvents for users", + "operationId": "users.DeleteDeviceManagementTroubleshootingEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "deviceManagementTroubleshootingEvent-id", + "in": "path", + "description": "key: id of deviceManagementTroubleshootingEvent", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceManagementTroubleshootingEvent" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/directReports": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get directReports from users", + "operationId": "users.ListDirectReports", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/directReports/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of directReports from users", + "operationId": "users.ListRefDirectReports", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.directoryObject" + ], + "summary": "Create new navigation property ref to directReports for users", + "operationId": "users.CreateRefDirectReports", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/drive": { + "get": { + "tags": [ + "users.drive" + ], + "summary": "Get drive from users", + "operationId": "users.GetDrive", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.drive" + ], + "summary": "Update the navigation property drive in users", + "operationId": "users.UpdateDrive", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.drive" + ], + "summary": "Delete navigation property drive for users", + "operationId": "users.DeleteDrive", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/drives": { + "get": { + "tags": [ + "users.drive" + ], + "summary": "Get drives from users", + "operationId": "users.ListDrives", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "driveType", + "driveType desc", + "owner", + "owner desc", + "quota", + "quota desc", + "sharePointIds", + "sharePointIds desc", + "system", + "system desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of drive", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.drive" + ], + "summary": "Create new navigation property to drives for users", + "operationId": "users.CreateDrives", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/drives/{drive-id}": { + "get": { + "tags": [ + "users.drive" + ], + "summary": "Get drives from users", + "operationId": "users.GetDrives", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "driveType", + "owner", + "quota", + "sharePointIds", + "system", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "items", + "list", + "root", + "special" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.drive" + ], + "summary": "Update the navigation property drives in users", + "operationId": "users.UpdateDrives", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.drive" + ], + "summary": "Delete navigation property drives for users", + "operationId": "users.DeleteDrives", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "drive-id", + "in": "path", + "description": "key: id of drive", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "drive" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/events": { + "get": { + "tags": [ + "users.event" + ], + "summary": "Get events from users", + "operationId": "users.ListEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.event" + ], + "summary": "Create new navigation property to events for users", + "operationId": "users.CreateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/events/{event-id}": { + "get": { + "tags": [ + "users.event" + ], + "summary": "Get events from users", + "operationId": "users.GetEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.event" + ], + "summary": "Update the navigation property events in users", + "operationId": "users.UpdateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.event" + ], + "summary": "Delete navigation property events for users", + "operationId": "users.DeleteEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/events/{event-id}/attachments": { + "get": { + "tags": [ + "users.events.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.events.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.events.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments", + "/users/{user-id}/calendar/events/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments", + "/users/{user-id}/calendarView/{event-id}/attachments" + ] + }, + "/users/{user-id}/events/{event-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.events.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.events.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.events.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.events.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}", + "/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/events/{event-id}/calendar": { + "get": { + "tags": [ + "users.events.calendar" + ], + "summary": "Get calendar from users", + "operationId": "users.events.GetCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "color", + "changeKey", + "canShare", + "canViewPrivateItems", + "canEdit", + "owner", + "events", + "calendarView", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.calendar" + ], + "summary": "Update the navigation property calendar in users", + "operationId": "users.events.UpdateCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.calendar" + ], + "summary": "Delete navigation property calendar for users", + "operationId": "users.events.DeleteCalendar", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/calendar", + "/users/{user-id}/calendar/events/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar", + "/users/{user-id}/calendarView/{event-id}/calendar" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView": { + "get": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.events.calendar.ListCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Create new navigation property to calendarView for users", + "operationId": "users.events.calendar.CreateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendars/{calendar-id}/calendarView", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}": { + "get": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Get calendarView from users", + "operationId": "users.events.calendar.GetCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Update the navigation property calendarView in users", + "operationId": "users.events.calendar.UpdateCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Delete navigation property calendarView for users", + "operationId": "users.events.calendar.DeleteCalendarView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.events.calendar.calendarView.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.events.calendar.calendarView.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.events.calendar.calendarView.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.events.calendar.calendarView.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.events.calendar.calendarView.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.events.calendar.calendarView.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events": { + "get": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Get events from users", + "operationId": "users.events.calendar.ListEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Create new navigation property to events for users", + "operationId": "users.events.calendar.CreateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendars/{calendar-id}/events", + "/users/{user-id}/calendarView/{event-id}/calendar/events" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}": { + "get": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Get events from users", + "operationId": "users.events.calendar.GetEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Update the navigation property events in users", + "operationId": "users.events.calendar.UpdateEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.calendar.event" + ], + "summary": "Delete navigation property events for users", + "operationId": "users.events.calendar.DeleteEvents", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/events/{event-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.events.calendar.events.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.events.calendar.events.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.events.calendar.events.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.events.calendar.events.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.events.calendar.events.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/events/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.events.calendar.events.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.events.calendar.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.events.calendar.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.events.calendar.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.events.calendar.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.calendar.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.events.calendar.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.events.calendar.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.events.calendar.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.events.calendar.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.events.calendar.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.calendar.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.events.calendar.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/events/{event-id}/extensions": { + "get": { + "tags": [ + "users.events.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.events.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.events.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions", + "/users/{user-id}/calendar/events/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions", + "/users/{user-id}/calendarView/{event-id}/extensions" + ] + }, + "/users/{user-id}/events/{event-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.events.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.events.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.events.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.events.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}", + "/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/events/{event-id}/instances": { + "get": { + "tags": [ + "users.events.event" + ], + "summary": "Get instances from users", + "operationId": "users.events.ListInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "originalStartTimeZone", + "originalStartTimeZone desc", + "originalEndTimeZone", + "originalEndTimeZone desc", + "responseStatus", + "responseStatus desc", + "iCalUId", + "iCalUId desc", + "reminderMinutesBeforeStart", + "reminderMinutesBeforeStart desc", + "isReminderOn", + "isReminderOn desc", + "hasAttachments", + "hasAttachments desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "sensitivity", + "sensitivity desc", + "start", + "start desc", + "originalStart", + "originalStart desc", + "end", + "end desc", + "location", + "location desc", + "locations", + "locations desc", + "isAllDay", + "isAllDay desc", + "isCancelled", + "isCancelled desc", + "isOrganizer", + "isOrganizer desc", + "recurrence", + "recurrence desc", + "responseRequested", + "responseRequested desc", + "seriesMasterId", + "seriesMasterId desc", + "showAs", + "showAs desc", + "type", + "type desc", + "attendees", + "attendees desc", + "organizer", + "organizer desc", + "webLink", + "webLink desc", + "onlineMeetingUrl", + "onlineMeetingUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of event", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.event" + ], + "summary": "Create new navigation property to instances for users", + "operationId": "users.events.CreateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances", + "/users/{user-id}/calendar/events/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances", + "/users/{user-id}/calendarView/{event-id}/instances" + ] + }, + "/users/{user-id}/events/{event-id}/instances/{event-id1}": { + "get": { + "tags": [ + "users.events.event" + ], + "summary": "Get instances from users", + "operationId": "users.events.GetInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "originalStartTimeZone", + "originalEndTimeZone", + "responseStatus", + "iCalUId", + "reminderMinutesBeforeStart", + "isReminderOn", + "hasAttachments", + "subject", + "body", + "bodyPreview", + "importance", + "sensitivity", + "start", + "originalStart", + "end", + "location", + "locations", + "isAllDay", + "isCancelled", + "isOrganizer", + "recurrence", + "responseRequested", + "seriesMasterId", + "showAs", + "type", + "attendees", + "organizer", + "webLink", + "onlineMeetingUrl", + "calendar", + "instances", + "extensions", + "attachments", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.event" + ], + "summary": "Update the navigation property instances in users", + "operationId": "users.events.UpdateInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.event" + ], + "summary": "Delete navigation property instances for users", + "operationId": "users.events.DeleteInstances", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}" + ] + }, + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.events.instances.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/accept" + ] + }, + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.events.instances.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/decline" + ] + }, + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.events.instances.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/dismissReminder" + ] + }, + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.events.instances.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/snoozeReminder" + ] + }, + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.events.instances.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "event-id1", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/tentativelyAccept" + ] + }, + "/users/{user-id}/events/{event-id}/instances/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.events.instances.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/events/{event-id}/accept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action accept", + "operationId": "users.events.accept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/calendarView/{event-id}/accept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendar/events/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/accept", + "/users/{user-id}/calendarView/{event-id}/accept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/accept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept" + ] + }, + "/users/{user-id}/events/{event-id}/decline": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action decline", + "operationId": "users.events.decline", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/calendarView/{event-id}/decline", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendar/events/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/decline", + "/users/{user-id}/calendarView/{event-id}/decline", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/decline", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline" + ] + }, + "/users/{user-id}/events/{event-id}/dismissReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action dismissReminder", + "operationId": "users.events.dismissReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendar/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/dismissReminder", + "/users/{user-id}/calendarView/{event-id}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/dismissReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder" + ] + }, + "/users/{user-id}/events/{event-id}/snoozeReminder": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action snoozeReminder", + "operationId": "users.events.snoozeReminder", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "NewReminderTime": { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendar/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/snoozeReminder", + "/users/{user-id}/calendarView/{event-id}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/snoozeReminder", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder" + ] + }, + "/users/{user-id}/events/{event-id}/tentativelyAccept": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action tentativelyAccept", + "operationId": "users.events.tentativelyAccept", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "SendResponse": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendar/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/tentativelyAccept", + "/users/{user-id}/calendarView/{event-id}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/tentativelyAccept", + "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept" + ] + }, + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.events.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.events.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.events.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.events.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.events.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.events.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.events.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.events.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.events.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.events.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.events.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.events.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.events.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.events.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.events.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "event-id", + "in": "path", + "description": "key: id of event", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "event" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/events/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.events.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/extensions": { + "get": { + "tags": [ + "users.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/inferenceClassification": { + "get": { + "tags": [ + "users.inferenceClassification" + ], + "summary": "Get inferenceClassification from users", + "operationId": "users.GetInferenceClassification", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overrides" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassification" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.inferenceClassification" + ], + "summary": "Update the navigation property inferenceClassification in users", + "operationId": "users.UpdateInferenceClassification", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassification" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.inferenceClassification" + ], + "summary": "Delete navigation property inferenceClassification for users", + "operationId": "users.DeleteInferenceClassification", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/inferenceClassification/overrides": { + "get": { + "tags": [ + "users.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Get overrides from users", + "operationId": "users.inferenceClassification.ListOverrides", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "classifyAs", + "classifyAs desc", + "senderEmailAddress", + "senderEmailAddress desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "classifyAs", + "senderEmailAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of inferenceClassificationOverride", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Create new navigation property to overrides for users", + "operationId": "users.inferenceClassification.CreateOverrides", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}": { + "get": { + "tags": [ + "users.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Get overrides from users", + "operationId": "users.inferenceClassification.GetOverrides", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "inferenceClassificationOverride-id", + "in": "path", + "description": "key: id of inferenceClassificationOverride", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "inferenceClassificationOverride" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "classifyAs", + "senderEmailAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Update the navigation property overrides in users", + "operationId": "users.inferenceClassification.UpdateOverrides", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "inferenceClassificationOverride-id", + "in": "path", + "description": "key: id of inferenceClassificationOverride", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "inferenceClassificationOverride" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.inferenceClassification.inferenceClassificationOverride" + ], + "summary": "Delete navigation property overrides for users", + "operationId": "users.inferenceClassification.DeleteOverrides", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "inferenceClassificationOverride-id", + "in": "path", + "description": "key: id of inferenceClassificationOverride", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "inferenceClassificationOverride" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights": { + "get": { + "tags": [ + "users.officeGraphInsights" + ], + "summary": "Get insights from users", + "operationId": "users.GetInsights", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "trending", + "shared", + "used" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "trending", + "shared", + "used" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.officeGraphInsights" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.officeGraphInsights" + ], + "summary": "Update the navigation property insights in users", + "operationId": "users.UpdateInsights", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.officeGraphInsights" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.officeGraphInsights" + ], + "summary": "Delete navigation property insights for users", + "operationId": "users.DeleteInsights", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared": { + "get": { + "tags": [ + "users.insights.sharedInsight" + ], + "summary": "Get shared from users", + "operationId": "users.insights.ListShared", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastShared", + "lastShared desc", + "sharingHistory", + "sharingHistory desc", + "resourceVisualization", + "resourceVisualization desc", + "resourceReference", + "resourceReference desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastShared", + "sharingHistory", + "resourceVisualization", + "resourceReference", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sharedInsight", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.insights.sharedInsight" + ], + "summary": "Create new navigation property to shared for users", + "operationId": "users.insights.CreateShared", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}": { + "get": { + "tags": [ + "users.insights.sharedInsight" + ], + "summary": "Get shared from users", + "operationId": "users.insights.GetShared", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastShared", + "sharingHistory", + "resourceVisualization", + "resourceReference", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "lastSharedMethod", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.insights.sharedInsight" + ], + "summary": "Update the navigation property shared in users", + "operationId": "users.insights.UpdateShared", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.sharedInsight" + ], + "summary": "Delete navigation property shared for users", + "operationId": "users.insights.DeleteShared", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod": { + "get": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Get lastSharedMethod from users", + "operationId": "users.insights.shared.GetLastSharedMethod", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/$ref": { + "get": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Get ref of lastSharedMethod from users", + "operationId": "users.insights.shared.GetRefLastSharedMethod", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Update the ref of navigation property lastSharedMethod in users", + "operationId": "users.insights.shared.UpdateRefLastSharedMethod", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Delete ref of navigation property lastSharedMethod for users", + "operationId": "users.insights.shared.DeleteRefLastSharedMethod", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "users.insights.shared.lastSharedMethod.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action commit", + "operationId": "users.insights.shared.lastSharedMethod.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "users.insights.shared.lastSharedMethod.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.shared.lastSharedMethod.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.shared.lastSharedMethod.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "users.insights.shared.lastSharedMethod.Range.boundingRect", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function cell", + "operationId": "users.insights.shared.lastSharedMethod.Range.cell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.shared.lastSharedMethod.Range.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function column", + "operationId": "users.insights.shared.lastSharedMethod.Range.column", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/column(column={column})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.shared.lastSharedMethod.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.shared.lastSharedMethod.Range.columnsAfter-0669", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.shared.lastSharedMethod.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.shared.lastSharedMethod.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action delete", + "operationId": "users.insights.shared.lastSharedMethod.Range.delete", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/delete", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/delete", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "users.insights.shared.lastSharedMethod.Range.entireColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireColumn()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "users.insights.shared.lastSharedMethod.Range.entireRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireRow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireRow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action insert", + "operationId": "users.insights.shared.lastSharedMethod.Range.insert", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/insert", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/insert", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "users.insights.shared.lastSharedMethod.Range.intersection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "users.insights.shared.lastSharedMethod.Range.lastCell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastCell()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastCell()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "users.insights.shared.lastSharedMethod.Range.lastColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastColumn()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "users.insights.shared.lastSharedMethod.Range.lastRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastRow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastRow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action merge", + "operationId": "users.insights.shared.lastSharedMethod.Range.merge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/merge", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/merge", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "users.insights.shared.lastSharedMethod.Range.offsetRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "users.insights.shared.lastSharedMethod.Range.resizedRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function row", + "operationId": "users.insights.shared.lastSharedMethod.Range.row", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/row(row={row})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.shared.lastSharedMethod.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.shared.lastSharedMethod.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.shared.lastSharedMethod.Range.rowsBelow-2035", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.shared.lastSharedMethod.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "users.insights.shared.lastSharedMethod.Range.unmerge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/unmerge", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/unmerge", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.shared.lastSharedMethod.Range.usedRange-5ff6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.shared.lastSharedMethod.Range.usedRange-63c8", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "users.insights.shared.lastSharedMethod.Range.visibleView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/visibleView()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/visibleView()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.shared.lastSharedMethod.RangeFill.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "users.insights.shared.lastSharedMethod.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "users.insights.shared.lastSharedMethod.RangeFormat.autofitRows", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitRows", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action apply", + "operationId": "users.insights.shared.lastSharedMethod.RangeSort.apply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeSort/apply", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeSort/apply", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeSort/apply" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function range", + "operationId": "users.insights.shared.lastSharedMethod.RangeView.range", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeView/range()", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeView/range()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeView/range()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource": { + "get": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Get resource from users", + "operationId": "users.insights.shared.GetResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/$ref": { + "get": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Get ref of resource from users", + "operationId": "users.insights.shared.GetRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Update the ref of navigation property resource in users", + "operationId": "users.insights.shared.UpdateRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.shared.entity" + ], + "summary": "Delete ref of navigation property resource for users", + "operationId": "users.insights.shared.DeleteRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "users.insights.shared.resource.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action commit", + "operationId": "users.insights.shared.resource.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "users.insights.shared.resource.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.shared.resource.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.shared.resource.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "users.insights.shared.resource.Range.boundingRect", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function cell", + "operationId": "users.insights.shared.resource.Range.cell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.shared.resource.Range.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function column", + "operationId": "users.insights.shared.resource.Range.column", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/column(column={column})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.shared.resource.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.shared.resource.Range.columnsAfter-0669", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.shared.resource.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.shared.resource.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/delete": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action delete", + "operationId": "users.insights.shared.resource.Range.delete", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/delete", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "users.insights.shared.resource.Range.entireColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireColumn()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "users.insights.shared.resource.Range.entireRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireRow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/insert": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action insert", + "operationId": "users.insights.shared.resource.Range.insert", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/insert", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "users.insights.shared.resource.Range.intersection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastCell()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "users.insights.shared.resource.Range.lastCell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastCell()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "users.insights.shared.resource.Range.lastColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastColumn()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "users.insights.shared.resource.Range.lastRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastRow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/merge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action merge", + "operationId": "users.insights.shared.resource.Range.merge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/merge", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "users.insights.shared.resource.Range.offsetRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "users.insights.shared.resource.Range.resizedRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function row", + "operationId": "users.insights.shared.resource.Range.row", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/row(row={row})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.shared.resource.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.shared.resource.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.shared.resource.Range.rowsBelow-2035", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.shared.resource.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/unmerge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "users.insights.shared.resource.Range.unmerge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/unmerge", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.shared.resource.Range.usedRange-5ff6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.shared.resource.Range.usedRange-63c8", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/visibleView()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "users.insights.shared.resource.Range.visibleView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/visibleView()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.shared.resource.RangeFill.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "users.insights.shared.resource.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "users.insights.shared.resource.RangeFormat.autofitRows", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitRows", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeSort/apply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action apply", + "operationId": "users.insights.shared.resource.RangeSort.apply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeSort/apply", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeSort/apply" + ] + }, + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeView/range()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function range", + "operationId": "users.insights.shared.resource.RangeView.range", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sharedInsight-id", + "in": "path", + "description": "key: id of sharedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sharedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeView/range()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeView/range()" + ] + }, + "/users/{user-id}/insights/trending": { + "get": { + "tags": [ + "users.insights.trending" + ], + "summary": "Get trending from users", + "operationId": "users.insights.ListTrending", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "weight", + "weight desc", + "resourceVisualization", + "resourceVisualization desc", + "resourceReference", + "resourceReference desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "weight", + "resourceVisualization", + "resourceReference", + "lastModifiedDateTime", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of trending", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.insights.trending" + ], + "summary": "Create new navigation property to trending for users", + "operationId": "users.insights.CreateTrending", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/trending/{trending-id}": { + "get": { + "tags": [ + "users.insights.trending" + ], + "summary": "Get trending from users", + "operationId": "users.insights.GetTrending", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "weight", + "resourceVisualization", + "resourceReference", + "lastModifiedDateTime", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.insights.trending" + ], + "summary": "Update the navigation property trending in users", + "operationId": "users.insights.UpdateTrending", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.trending" + ], + "summary": "Delete navigation property trending for users", + "operationId": "users.insights.DeleteTrending", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/trending/{trending-id}/resource": { + "get": { + "tags": [ + "users.insights.trending.entity" + ], + "summary": "Get resource from users", + "operationId": "users.insights.trending.GetResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/$ref": { + "get": { + "tags": [ + "users.insights.trending.entity" + ], + "summary": "Get ref of resource from users", + "operationId": "users.insights.trending.GetRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.insights.trending.entity" + ], + "summary": "Update the ref of navigation property resource in users", + "operationId": "users.insights.trending.UpdateRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.trending.entity" + ], + "summary": "Delete ref of navigation property resource for users", + "operationId": "users.insights.trending.DeleteRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "users.insights.trending.resource.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action commit", + "operationId": "users.insights.trending.resource.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "users.insights.trending.resource.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.trending.resource.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.trending.resource.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "users.insights.trending.resource.Range.boundingRect", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function cell", + "operationId": "users.insights.trending.resource.Range.cell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.trending.resource.Range.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/column(column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function column", + "operationId": "users.insights.trending.resource.Range.column", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/column(column={column})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.trending.resource.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.trending.resource.Range.columnsAfter-0669", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.trending.resource.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.trending.resource.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/delete": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action delete", + "operationId": "users.insights.trending.resource.Range.delete", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/delete", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/delete" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "users.insights.trending.resource.Range.entireColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireColumn()" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "users.insights.trending.resource.Range.entireRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireRow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireRow()" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/insert": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action insert", + "operationId": "users.insights.trending.resource.Range.insert", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/insert", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/insert" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "users.insights.trending.resource.Range.intersection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastCell()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "users.insights.trending.resource.Range.lastCell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastCell()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastCell()" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "users.insights.trending.resource.Range.lastColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastColumn()" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "users.insights.trending.resource.Range.lastRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastRow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastRow()" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/merge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action merge", + "operationId": "users.insights.trending.resource.Range.merge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/merge", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/merge" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "users.insights.trending.resource.Range.offsetRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "users.insights.trending.resource.Range.resizedRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/row(row={row})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function row", + "operationId": "users.insights.trending.resource.Range.row", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/row(row={row})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.trending.resource.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.trending.resource.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.trending.resource.Range.rowsBelow-2035", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.trending.resource.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/unmerge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "users.insights.trending.resource.Range.unmerge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/unmerge", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/unmerge" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.trending.resource.Range.usedRange-5ff6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.trending.resource.Range.usedRange-63c8", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/visibleView()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "users.insights.trending.resource.Range.visibleView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/visibleView()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/visibleView()" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.trending.resource.RangeFill.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "users.insights.trending.resource.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitRows": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "users.insights.trending.resource.RangeFormat.autofitRows", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeSort/apply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action apply", + "operationId": "users.insights.trending.resource.RangeSort.apply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeSort/apply", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeSort/apply" + ] + }, + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeView/range()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function range", + "operationId": "users.insights.trending.resource.RangeView.range", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "trending-id", + "in": "path", + "description": "key: id of trending", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "trending" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeView/range()", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeView/range()" + ] + }, + "/users/{user-id}/insights/used": { + "get": { + "tags": [ + "users.insights.usedInsight" + ], + "summary": "Get used from users", + "operationId": "users.insights.ListUsed", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastUsed", + "lastUsed desc", + "resourceVisualization", + "resourceVisualization desc", + "resourceReference", + "resourceReference desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastUsed", + "resourceVisualization", + "resourceReference", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of usedInsight", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.insights.usedInsight" + ], + "summary": "Create new navigation property to used for users", + "operationId": "users.insights.CreateUsed", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/used/{usedInsight-id}": { + "get": { + "tags": [ + "users.insights.usedInsight" + ], + "summary": "Get used from users", + "operationId": "users.insights.GetUsed", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastUsed", + "resourceVisualization", + "resourceReference", + "resource" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "resource" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.insights.usedInsight" + ], + "summary": "Update the navigation property used in users", + "operationId": "users.insights.UpdateUsed", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.usedInsight" + ], + "summary": "Delete navigation property used for users", + "operationId": "users.insights.DeleteUsed", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource": { + "get": { + "tags": [ + "users.insights.used.entity" + ], + "summary": "Get resource from users", + "operationId": "users.insights.used.GetResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Entity" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/$ref": { + "get": { + "tags": [ + "users.insights.used.entity" + ], + "summary": "Get ref of resource from users", + "operationId": "users.insights.used.GetRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.insights.used.entity" + ], + "summary": "Update the ref of navigation property resource in users", + "operationId": "users.insights.used.UpdateRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.insights.used.entity" + ], + "summary": "Delete ref of navigation property resource for users", + "operationId": "users.insights.used.DeleteRefResource", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action targetApps", + "operationId": "users.insights.used.resource.microsoft.graph.managedAppProtection.targetApps", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "apps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/targetApps", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/targetApps" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action commit", + "operationId": "users.insights.used.resource.microsoft.graph.mobileAppContentFile.commit", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fileEncryptionInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileEncryptionInfo" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/commit", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/commit" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action renewUpload", + "operationId": "users.insights.used.resource.microsoft.graph.mobileAppContentFile.renewUpload", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/renewUpload" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.used.resource.microsoft.graph.targetedManagedAppProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assign", + "operationId": "users.insights.used.resource.microsoft.graph.windowsInformationProtection.assign", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "assignments": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/assign", + "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/assign", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/assign" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function boundingRect", + "operationId": "users.insights.used.resource.Range.boundingRect", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/boundingRect(anotherRange={anotherRange})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/boundingRect(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/cell(row={row},column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function cell", + "operationId": "users.insights.used.resource.Range.cell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/cell(row={row},column={column})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/cell(row={row},column={column})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.used.resource.Range.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/column(column={column})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function column", + "operationId": "users.insights.used.resource.Range.column", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/column(column={column})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/column(column={column})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/column(column={column})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.used.resource.Range.columnsAfter-43bb", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsAfter", + "operationId": "users.insights.used.resource.Range.columnsAfter-0669", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsAfter(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsAfter()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.used.resource.Range.columnsBefore-b5c5", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function columnsBefore", + "operationId": "users.insights.used.resource.Range.columnsBefore-b7c6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/columnsBefore(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/columnsBefore()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/delete": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action delete", + "operationId": "users.insights.used.resource.Range.delete", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/delete", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/delete", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/delete" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireColumn", + "operationId": "users.insights.used.resource.Range.entireColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireColumn()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireColumn()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireColumn()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/entireRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function entireRow", + "operationId": "users.insights.used.resource.Range.entireRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/entireRow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/entireRow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/entireRow()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/insert": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action insert", + "operationId": "users.insights.used.resource.Range.insert", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/insert", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/insert", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/insert" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function intersection", + "operationId": "users.insights.used.resource.Range.intersection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "anotherRange", + "in": "path", + "description": "Usage: anotherRange={anotherRange}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/intersection(anotherRange={anotherRange})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/intersection(anotherRange={anotherRange})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastCell()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastCell", + "operationId": "users.insights.used.resource.Range.lastCell", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastCell()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastCell()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastCell()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastColumn()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastColumn", + "operationId": "users.insights.used.resource.Range.lastColumn", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastColumn()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastColumn()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastColumn()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/lastRow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function lastRow", + "operationId": "users.insights.used.resource.Range.lastRow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/lastRow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/lastRow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/lastRow()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/merge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action merge", + "operationId": "users.insights.used.resource.Range.merge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/merge", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/merge", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/merge" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function offsetRange", + "operationId": "users.insights.used.resource.Range.offsetRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "rowOffset", + "in": "path", + "description": "Usage: rowOffset={rowOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "columnOffset", + "in": "path", + "description": "Usage: columnOffset={columnOffset}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function resizedRange", + "operationId": "users.insights.used.resource.Range.resizedRange", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "deltaRows", + "in": "path", + "description": "Usage: deltaRows={deltaRows}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "deltaColumns", + "in": "path", + "description": "Usage: deltaColumns={deltaColumns}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/row(row={row})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function row", + "operationId": "users.insights.used.resource.Range.row", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/row(row={row})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/row(row={row})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/row(row={row})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.used.resource.Range.rowsAbove-80e1", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsAbove", + "operationId": "users.insights.used.resource.Range.rowsAbove-d2c7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsAbove(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsAbove()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.used.resource.Range.rowsBelow-2035", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow(count={count})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function rowsBelow", + "operationId": "users.insights.used.resource.Range.rowsBelow-cfc7", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "count", + "in": "path", + "description": "Usage: count={count}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/rowsBelow(count={count})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/rowsBelow()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/unmerge": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action unmerge", + "operationId": "users.insights.used.resource.Range.unmerge", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/unmerge", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/unmerge", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/unmerge" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.used.resource.Range.usedRange-5ff6", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "users.insights.used.resource.Range.usedRange-63c8", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/usedRange(valuesOnly={valuesOnly})", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/usedRange()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/visibleView()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function visibleView", + "operationId": "users.insights.used.resource.Range.visibleView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeView" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/visibleView()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/visibleView()", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/visibleView()" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFill/clear": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action clear", + "operationId": "users.insights.used.resource.RangeFill.clear", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFill/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/Range/clear", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/Range/clear", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFill/clear", + "/users/{user-id}/insights/used/{usedInsight-id}/resource/Range/clear" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitColumns": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitColumns", + "operationId": "users.insights.used.resource.RangeFormat.autofitColumns", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitColumns", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitColumns", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitColumns" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeFormat/autofitRows": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action autofitRows", + "operationId": "users.insights.used.resource.RangeFormat.autofitRows", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeFormat/autofitRows", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeFormat/autofitRows", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeFormat/autofitRows" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeSort/apply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action apply", + "operationId": "users.insights.used.resource.RangeSort.apply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "hasHeaders": { + "type": "boolean", + "default": false + }, + "orientation": { + "type": "string" + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeSort/apply", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeSort/apply", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeSort/apply" + ] + }, + "/users/{user-id}/insights/used/{usedInsight-id}/resource/RangeView/range()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function range", + "operationId": "users.insights.used.resource.RangeView.range", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "usedInsight-id", + "in": "path", + "description": "key: id of usedInsight", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "usedInsight" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/RangeView/range()", + "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/RangeView/range()", + "/users/{user-id}/insights/trending/{trending-id}/resource/RangeView/range()" + ] + }, + "/users/{user-id}/licenseDetails": { + "get": { + "tags": [ + "users.licenseDetails" + ], + "summary": "Get licenseDetails from users", + "operationId": "users.ListLicenseDetails", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "servicePlans", + "servicePlans desc", + "skuId", + "skuId desc", + "skuPartNumber", + "skuPartNumber desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "servicePlans", + "skuId", + "skuPartNumber" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of licenseDetails", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.licenseDetails" + ], + "summary": "Create new navigation property to licenseDetails for users", + "operationId": "users.CreateLicenseDetails", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/licenseDetails/{licenseDetails-id}": { + "get": { + "tags": [ + "users.licenseDetails" + ], + "summary": "Get licenseDetails from users", + "operationId": "users.GetLicenseDetails", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "licenseDetails-id", + "in": "path", + "description": "key: id of licenseDetails", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "licenseDetails" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "servicePlans", + "skuId", + "skuPartNumber" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.licenseDetails" + ], + "summary": "Update the navigation property licenseDetails in users", + "operationId": "users.UpdateLicenseDetails", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "licenseDetails-id", + "in": "path", + "description": "key: id of licenseDetails", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "licenseDetails" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.licenseDetails" + ], + "summary": "Delete navigation property licenseDetails for users", + "operationId": "users.DeleteLicenseDetails", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "licenseDetails-id", + "in": "path", + "description": "key: id of licenseDetails", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "licenseDetails" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders": { + "get": { + "tags": [ + "users.mailFolder" + ], + "summary": "Get mailFolders from users", + "operationId": "users.ListMailFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "parentFolderId", + "parentFolderId desc", + "childFolderCount", + "childFolderCount desc", + "unreadItemCount", + "unreadItemCount desc", + "totalItemCount", + "totalItemCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mailFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolder" + ], + "summary": "Create new navigation property to mailFolders for users", + "operationId": "users.CreateMailFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}": { + "get": { + "tags": [ + "users.mailFolder" + ], + "summary": "Get mailFolders from users", + "operationId": "users.GetMailFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolder" + ], + "summary": "Update the navigation property mailFolders in users", + "operationId": "users.UpdateMailFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolder" + ], + "summary": "Delete navigation property mailFolders for users", + "operationId": "users.DeleteMailFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders": { + "get": { + "tags": [ + "users.mailFolders.mailFolder" + ], + "summary": "Get childFolders from users", + "operationId": "users.mailFolders.ListChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "parentFolderId", + "parentFolderId desc", + "childFolderCount", + "childFolderCount desc", + "unreadItemCount", + "unreadItemCount desc", + "totalItemCount", + "totalItemCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of mailFolder", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.mailFolder" + ], + "summary": "Create new navigation property to childFolders for users", + "operationId": "users.mailFolders.CreateChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}": { + "get": { + "tags": [ + "users.mailFolders.mailFolder" + ], + "summary": "Get childFolders from users", + "operationId": "users.mailFolders.GetChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "parentFolderId", + "childFolderCount", + "unreadItemCount", + "totalItemCount", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "messages", + "messageRules", + "childFolders", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.mailFolder" + ], + "summary": "Update the navigation property childFolders in users", + "operationId": "users.mailFolders.UpdateChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.mailFolder" + ], + "summary": "Delete navigation property childFolders for users", + "operationId": "users.mailFolders.DeleteChildFolders", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copy", + "operationId": "users.mailFolders.childFolders.copy", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "/users/{user-id}/mailFolders/{mailFolder-id}/copy", + "/users/{user-id}/messages/{message-id}/copy" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action move", + "operationId": "users.mailFolders.childFolders.move", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "mailFolder-id1", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "/users/{user-id}/mailFolders/{mailFolder-id}/move", + "/users/{user-id}/messages/{message-id}/move" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.mailFolders.childFolders.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules": { + "get": { + "tags": [ + "users.mailFolders.messageRule" + ], + "summary": "Get messageRules from users", + "operationId": "users.mailFolders.ListMessageRules", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "sequence", + "sequence desc", + "conditions", + "conditions desc", + "actions", + "actions desc", + "exceptions", + "exceptions desc", + "isEnabled", + "isEnabled desc", + "hasError", + "hasError desc", + "isReadOnly", + "isReadOnly desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "sequence", + "conditions", + "actions", + "exceptions", + "isEnabled", + "hasError", + "isReadOnly" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of messageRule", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.messageRule" + ], + "summary": "Create new navigation property to messageRules for users", + "operationId": "users.mailFolders.CreateMessageRules", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}": { + "get": { + "tags": [ + "users.mailFolders.messageRule" + ], + "summary": "Get messageRules from users", + "operationId": "users.mailFolders.GetMessageRules", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "messageRule-id", + "in": "path", + "description": "key: id of messageRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "messageRule" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "sequence", + "conditions", + "actions", + "exceptions", + "isEnabled", + "hasError", + "isReadOnly" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.messageRule" + ], + "summary": "Update the navigation property messageRules in users", + "operationId": "users.mailFolders.UpdateMessageRules", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "messageRule-id", + "in": "path", + "description": "key: id of messageRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "messageRule" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.messageRule" + ], + "summary": "Delete navigation property messageRules for users", + "operationId": "users.mailFolders.DeleteMessageRules", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "messageRule-id", + "in": "path", + "description": "key: id of messageRule", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "messageRule" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages": { + "get": { + "tags": [ + "users.mailFolders.message" + ], + "summary": "Get messages from users", + "operationId": "users.mailFolders.ListMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "receivedDateTime", + "receivedDateTime desc", + "sentDateTime", + "sentDateTime desc", + "hasAttachments", + "hasAttachments desc", + "internetMessageId", + "internetMessageId desc", + "internetMessageHeaders", + "internetMessageHeaders desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "parentFolderId", + "parentFolderId desc", + "sender", + "sender desc", + "from", + "from desc", + "toRecipients", + "toRecipients desc", + "ccRecipients", + "ccRecipients desc", + "bccRecipients", + "bccRecipients desc", + "replyTo", + "replyTo desc", + "conversationId", + "conversationId desc", + "uniqueBody", + "uniqueBody desc", + "isDeliveryReceiptRequested", + "isDeliveryReceiptRequested desc", + "isReadReceiptRequested", + "isReadReceiptRequested desc", + "isRead", + "isRead desc", + "isDraft", + "isDraft desc", + "webLink", + "webLink desc", + "inferenceClassification", + "inferenceClassification desc", + "flag", + "flag desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of message", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.message" + ], + "summary": "Create new navigation property to messages for users", + "operationId": "users.mailFolders.CreateMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}": { + "get": { + "tags": [ + "users.mailFolders.message" + ], + "summary": "Get messages from users", + "operationId": "users.mailFolders.GetMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.message" + ], + "summary": "Update the navigation property messages in users", + "operationId": "users.mailFolders.UpdateMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.message" + ], + "summary": "Delete navigation property messages for users", + "operationId": "users.mailFolders.DeleteMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments": { + "get": { + "tags": [ + "users.mailFolders.messages.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.mailFolders.messages.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.messages.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.mailFolders.messages.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/attachments" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.mailFolders.messages.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.mailFolders.messages.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.messages.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.mailFolders.messages.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.messages.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.mailFolders.messages.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions": { + "get": { + "tags": [ + "users.mailFolders.messages.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.mailFolders.messages.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.messages.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.mailFolders.messages.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/extensions" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.mailFolders.messages.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.mailFolders.messages.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.messages.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.mailFolders.messages.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.messages.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.mailFolders.messages.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copy", + "operationId": "users.mailFolders.messages.copy", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "/users/{user-id}/mailFolders/{mailFolder-id}/copy", + "/users/{user-id}/messages/{message-id}/copy" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action createForward", + "operationId": "users.mailFolders.messages.createForward", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/createForward" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action createReply", + "operationId": "users.mailFolders.messages.createReply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/createReply" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action createReplyAll", + "operationId": "users.mailFolders.messages.createReplyAll", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/createReplyAll" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action forward", + "operationId": "users.mailFolders.messages.forward", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/forward" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action move", + "operationId": "users.mailFolders.messages.move", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "/users/{user-id}/mailFolders/{mailFolder-id}/move", + "/users/{user-id}/messages/{message-id}/move" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action reply", + "operationId": "users.mailFolders.messages.reply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/reply" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action replyAll", + "operationId": "users.mailFolders.messages.replyAll", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/replyAll" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action send", + "operationId": "users.mailFolders.messages.send", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/send" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.mailFolders.messages.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.mailFolders.messages.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.mailFolders.messages.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.mailFolders.messages.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.mailFolders.messages.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.mailFolders.messages.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.mailFolders.messages.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.mailFolders.messages.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.mailFolders.messages.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.mailFolders.messages.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.mailFolders.messages.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/copy": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copy", + "operationId": "users.mailFolders.copy", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "/users/{user-id}/messages/{message-id}/copy" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/move": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action move", + "operationId": "users.mailFolders.move", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "/users/{user-id}/messages/{message-id}/move" + ] + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.mailFolders.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.mailFolders.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.mailFolders.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.mailFolders.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.mailFolders.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.mailFolders.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.mailFolders.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.mailFolders.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.mailFolders.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.mailFolders.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.mailFolders.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "mailFolder-id", + "in": "path", + "description": "key: id of mailFolder", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "mailFolder" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/mailFolders/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.mailFolders.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/messages/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/managedAppRegistrations": { + "get": { + "tags": [ + "users.managedAppRegistration" + ], + "summary": "Get managedAppRegistrations from users", + "operationId": "users.ListManagedAppRegistrations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "applicationVersion", + "applicationVersion desc", + "managementSdkVersion", + "managementSdkVersion desc", + "platformVersion", + "platformVersion desc", + "deviceType", + "deviceType desc", + "deviceTag", + "deviceTag desc", + "deviceName", + "deviceName desc", + "flaggedReasons", + "flaggedReasons desc", + "userId", + "userId desc", + "appIdentifier", + "appIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastSyncDateTime", + "applicationVersion", + "managementSdkVersion", + "platformVersion", + "deviceType", + "deviceTag", + "deviceName", + "flaggedReasons", + "userId", + "appIdentifier", + "version", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "appliedPolicies", + "intendedPolicies", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedAppRegistration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedAppRegistrations/$ref": { + "get": { + "tags": [ + "users.managedAppRegistration" + ], + "summary": "Get ref of managedAppRegistrations from users", + "operationId": "users.ListRefManagedAppRegistrations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "applicationVersion", + "applicationVersion desc", + "managementSdkVersion", + "managementSdkVersion desc", + "platformVersion", + "platformVersion desc", + "deviceType", + "deviceType desc", + "deviceTag", + "deviceTag desc", + "deviceName", + "deviceName desc", + "flaggedReasons", + "flaggedReasons desc", + "userId", + "userId desc", + "appIdentifier", + "appIdentifier desc", + "version", + "version desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of managedAppRegistration", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.managedAppRegistration" + ], + "summary": "Create new navigation property ref to managedAppRegistrations for users", + "operationId": "users.CreateRefManagedAppRegistrations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function getUserIdsWithFlaggedAppRegistration", + "operationId": "users.managedAppRegistrations.getUserIdsWithFlaggedAppRegistration", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/managedDevices": { + "get": { + "tags": [ + "users.managedDevice" + ], + "summary": "Get managedDevices from users", + "operationId": "users.ListManagedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "userId", + "userId desc", + "deviceName", + "deviceName desc", + "managedDeviceOwnerType", + "managedDeviceOwnerType desc", + "deviceActionResults", + "deviceActionResults desc", + "enrolledDateTime", + "enrolledDateTime desc", + "lastSyncDateTime", + "lastSyncDateTime desc", + "operatingSystem", + "operatingSystem desc", + "complianceState", + "complianceState desc", + "jailBroken", + "jailBroken desc", + "managementAgent", + "managementAgent desc", + "osVersion", + "osVersion desc", + "easActivated", + "easActivated desc", + "easDeviceId", + "easDeviceId desc", + "easActivationDateTime", + "easActivationDateTime desc", + "azureADRegistered", + "azureADRegistered desc", + "deviceEnrollmentType", + "deviceEnrollmentType desc", + "activationLockBypassCode", + "activationLockBypassCode desc", + "emailAddress", + "emailAddress desc", + "azureADDeviceId", + "azureADDeviceId desc", + "deviceRegistrationState", + "deviceRegistrationState desc", + "deviceCategoryDisplayName", + "deviceCategoryDisplayName desc", + "isSupervised", + "isSupervised desc", + "exchangeLastSuccessfulSyncDateTime", + "exchangeLastSuccessfulSyncDateTime desc", + "exchangeAccessState", + "exchangeAccessState desc", + "exchangeAccessStateReason", + "exchangeAccessStateReason desc", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionUrl desc", + "remoteAssistanceSessionErrorDetails", + "remoteAssistanceSessionErrorDetails desc", + "isEncrypted", + "isEncrypted desc", + "userPrincipalName", + "userPrincipalName desc", + "model", + "model desc", + "manufacturer", + "manufacturer desc", + "imei", + "imei desc", + "complianceGracePeriodExpirationDateTime", + "complianceGracePeriodExpirationDateTime desc", + "serialNumber", + "serialNumber desc", + "phoneNumber", + "phoneNumber desc", + "androidSecurityPatchLevel", + "androidSecurityPatchLevel desc", + "userDisplayName", + "userDisplayName desc", + "configurationManagerClientEnabledFeatures", + "configurationManagerClientEnabledFeatures desc", + "wiFiMacAddress", + "wiFiMacAddress desc", + "deviceHealthAttestationState", + "deviceHealthAttestationState desc", + "subscriberCarrier", + "subscriberCarrier desc", + "meid", + "meid desc", + "totalStorageSpaceInBytes", + "totalStorageSpaceInBytes desc", + "freeStorageSpaceInBytes", + "freeStorageSpaceInBytes desc", + "managedDeviceName", + "managedDeviceName desc", + "partnerReportedThreatState", + "partnerReportedThreatState desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of managedDevice", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.managedDevice" + ], + "summary": "Create new navigation property to managedDevices for users", + "operationId": "users.CreateManagedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}": { + "get": { + "tags": [ + "users.managedDevice" + ], + "summary": "Get managedDevices from users", + "operationId": "users.GetManagedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "userId", + "deviceName", + "managedDeviceOwnerType", + "deviceActionResults", + "enrolledDateTime", + "lastSyncDateTime", + "operatingSystem", + "complianceState", + "jailBroken", + "managementAgent", + "osVersion", + "easActivated", + "easDeviceId", + "easActivationDateTime", + "azureADRegistered", + "deviceEnrollmentType", + "activationLockBypassCode", + "emailAddress", + "azureADDeviceId", + "deviceRegistrationState", + "deviceCategoryDisplayName", + "isSupervised", + "exchangeLastSuccessfulSyncDateTime", + "exchangeAccessState", + "exchangeAccessStateReason", + "remoteAssistanceSessionUrl", + "remoteAssistanceSessionErrorDetails", + "isEncrypted", + "userPrincipalName", + "model", + "manufacturer", + "imei", + "complianceGracePeriodExpirationDateTime", + "serialNumber", + "phoneNumber", + "androidSecurityPatchLevel", + "userDisplayName", + "configurationManagerClientEnabledFeatures", + "wiFiMacAddress", + "deviceHealthAttestationState", + "subscriberCarrier", + "meid", + "totalStorageSpaceInBytes", + "freeStorageSpaceInBytes", + "managedDeviceName", + "partnerReportedThreatState", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "deviceConfigurationStates", + "deviceCategory", + "deviceCompliancePolicyStates" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.managedDevice" + ], + "summary": "Update the navigation property managedDevices in users", + "operationId": "users.UpdateManagedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.managedDevice" + ], + "summary": "Delete navigation property managedDevices for users", + "operationId": "users.DeleteManagedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory": { + "get": { + "tags": [ + "users.managedDevices.deviceCategory" + ], + "summary": "Get deviceCategory from users", + "operationId": "users.managedDevices.GetDeviceCategory", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "description" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.managedDevices.deviceCategory" + ], + "summary": "Update the navigation property deviceCategory in users", + "operationId": "users.managedDevices.UpdateDeviceCategory", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.managedDevices.deviceCategory" + ], + "summary": "Delete navigation property deviceCategory for users", + "operationId": "users.managedDevices.DeleteDeviceCategory", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": { + "get": { + "tags": [ + "users.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Get deviceCompliancePolicyStates from users", + "operationId": "users.managedDevices.ListDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingStates", + "settingStates desc", + "displayName", + "displayName desc", + "version", + "version desc", + "platformType", + "platformType desc", + "state", + "state desc", + "settingCount", + "settingCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceCompliancePolicyState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Create new navigation property to deviceCompliancePolicyStates for users", + "operationId": "users.managedDevices.CreateDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": { + "get": { + "tags": [ + "users.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Get deviceCompliancePolicyStates from users", + "operationId": "users.managedDevices.GetDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Update the navigation property deviceCompliancePolicyStates in users", + "operationId": "users.managedDevices.UpdateDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.managedDevices.deviceCompliancePolicyState" + ], + "summary": "Delete navigation property deviceCompliancePolicyStates for users", + "operationId": "users.managedDevices.DeleteDeviceCompliancePolicyStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceCompliancePolicyState-id", + "in": "path", + "description": "key: id of deviceCompliancePolicyState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceCompliancePolicyState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates": { + "get": { + "tags": [ + "users.managedDevices.deviceConfigurationState" + ], + "summary": "Get deviceConfigurationStates from users", + "operationId": "users.managedDevices.ListDeviceConfigurationStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "settingStates", + "settingStates desc", + "displayName", + "displayName desc", + "version", + "version desc", + "platformType", + "platformType desc", + "state", + "state desc", + "settingCount", + "settingCount desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of deviceConfigurationState", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.managedDevices.deviceConfigurationState" + ], + "summary": "Create new navigation property to deviceConfigurationStates for users", + "operationId": "users.managedDevices.CreateDeviceConfigurationStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": { + "get": { + "tags": [ + "users.managedDevices.deviceConfigurationState" + ], + "summary": "Get deviceConfigurationStates from users", + "operationId": "users.managedDevices.GetDeviceConfigurationStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "settingStates", + "displayName", + "version", + "platformType", + "state", + "settingCount" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.managedDevices.deviceConfigurationState" + ], + "summary": "Update the navigation property deviceConfigurationStates in users", + "operationId": "users.managedDevices.UpdateDeviceConfigurationStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.managedDevices.deviceConfigurationState" + ], + "summary": "Delete navigation property deviceConfigurationStates for users", + "operationId": "users.managedDevices.DeleteDeviceConfigurationStates", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + }, + { + "name": "deviceConfigurationState-id", + "in": "path", + "description": "key: id of deviceConfigurationState", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "deviceConfigurationState" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action bypassActivationLock", + "operationId": "users.managedDevices.bypassActivationLock", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action cleanWindowsDevice", + "operationId": "users.managedDevices.cleanWindowsDevice", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "keepUserData": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action deleteUserFromSharedAppleDevice", + "operationId": "users.managedDevices.deleteUserFromSharedAppleDevice", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "userPrincipalName": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action disableLostMode", + "operationId": "users.managedDevices.disableLostMode", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action locateDevice", + "operationId": "users.managedDevices.locateDevice", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action logoutSharedAppleDeviceActiveUser", + "operationId": "users.managedDevices.logoutSharedAppleDeviceActiveUser", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action rebootNow", + "operationId": "users.managedDevices.rebootNow", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action recoverPasscode", + "operationId": "users.managedDevices.recoverPasscode", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action remoteLock", + "operationId": "users.managedDevices.remoteLock", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action requestRemoteAssistance", + "operationId": "users.managedDevices.requestRemoteAssistance", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action resetPasscode", + "operationId": "users.managedDevices.resetPasscode", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/retire": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action retire", + "operationId": "users.managedDevices.retire", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action shutDown", + "operationId": "users.managedDevices.shutDown", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action syncDevice", + "operationId": "users.managedDevices.syncDevice", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action updateWindowsDeviceAccount", + "operationId": "users.managedDevices.updateWindowsDeviceAccount", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "updateWindowsDeviceAccountActionParameter": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.updateWindowsDeviceAccountActionParameter" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action windowsDefenderScan", + "operationId": "users.managedDevices.windowsDefenderScan", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "quickScan": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action windowsDefenderUpdateSignatures", + "operationId": "users.managedDevices.windowsDefenderUpdateSignatures", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/managedDevices/{managedDevice-id}/wipe": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action wipe", + "operationId": "users.managedDevices.wipe", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "managedDevice-id", + "in": "path", + "description": "key: id of managedDevice", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "managedDevice" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "keepEnrollmentData": { + "type": "boolean", + "default": false, + "nullable": true + }, + "keepUserData": { + "type": "boolean", + "default": false, + "nullable": true + }, + "macOsUnlockCode": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/manager": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get manager from users", + "operationId": "users.GetManager", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/manager/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of manager from users", + "operationId": "users.GetRefManager", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property link", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.directoryObject" + ], + "summary": "Update the ref of navigation property manager in users", + "operationId": "users.UpdateRefManager", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref values", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.directoryObject" + ], + "summary": "Delete ref of navigation property manager for users", + "operationId": "users.DeleteRefManager", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/memberOf": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get memberOf from users", + "operationId": "users.ListMemberOf", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/memberOf/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of memberOf from users", + "operationId": "users.ListRefMemberOf", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.directoryObject" + ], + "summary": "Create new navigation property ref to memberOf for users", + "operationId": "users.CreateRefMemberOf", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/messages": { + "get": { + "tags": [ + "users.message" + ], + "summary": "Get messages from users", + "operationId": "users.ListMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdDateTime", + "createdDateTime desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "changeKey", + "changeKey desc", + "categories", + "categories desc", + "receivedDateTime", + "receivedDateTime desc", + "sentDateTime", + "sentDateTime desc", + "hasAttachments", + "hasAttachments desc", + "internetMessageId", + "internetMessageId desc", + "internetMessageHeaders", + "internetMessageHeaders desc", + "subject", + "subject desc", + "body", + "body desc", + "bodyPreview", + "bodyPreview desc", + "importance", + "importance desc", + "parentFolderId", + "parentFolderId desc", + "sender", + "sender desc", + "from", + "from desc", + "toRecipients", + "toRecipients desc", + "ccRecipients", + "ccRecipients desc", + "bccRecipients", + "bccRecipients desc", + "replyTo", + "replyTo desc", + "conversationId", + "conversationId desc", + "uniqueBody", + "uniqueBody desc", + "isDeliveryReceiptRequested", + "isDeliveryReceiptRequested desc", + "isReadReceiptRequested", + "isReadReceiptRequested desc", + "isRead", + "isRead desc", + "isDraft", + "isDraft desc", + "webLink", + "webLink desc", + "inferenceClassification", + "inferenceClassification desc", + "flag", + "flag desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of message", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.message" + ], + "summary": "Create new navigation property to messages for users", + "operationId": "users.CreateMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/messages/{message-id}": { + "get": { + "tags": [ + "users.message" + ], + "summary": "Get messages from users", + "operationId": "users.GetMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdDateTime", + "lastModifiedDateTime", + "changeKey", + "categories", + "receivedDateTime", + "sentDateTime", + "hasAttachments", + "internetMessageId", + "internetMessageHeaders", + "subject", + "body", + "bodyPreview", + "importance", + "parentFolderId", + "sender", + "from", + "toRecipients", + "ccRecipients", + "bccRecipients", + "replyTo", + "conversationId", + "uniqueBody", + "isDeliveryReceiptRequested", + "isReadReceiptRequested", + "isRead", + "isDraft", + "webLink", + "inferenceClassification", + "flag", + "attachments", + "extensions", + "singleValueExtendedProperties", + "multiValueExtendedProperties" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.message" + ], + "summary": "Update the navigation property messages in users", + "operationId": "users.UpdateMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.message" + ], + "summary": "Delete navigation property messages for users", + "operationId": "users.DeleteMessages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/messages/{message-id}/attachments": { + "get": { + "tags": [ + "users.messages.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.messages.ListAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "contentType", + "contentType desc", + "size", + "size desc", + "isInline", + "isInline desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of attachment", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.messages.attachment" + ], + "summary": "Create new navigation property to attachments for users", + "operationId": "users.messages.CreateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments" + ] + }, + "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}": { + "get": { + "tags": [ + "users.messages.attachment" + ], + "summary": "Get attachments from users", + "operationId": "users.messages.GetAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedDateTime", + "name", + "contentType", + "size", + "isInline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.messages.attachment" + ], + "summary": "Update the navigation property attachments in users", + "operationId": "users.messages.UpdateAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.messages.attachment" + ], + "summary": "Delete navigation property attachments for users", + "operationId": "users.messages.DeleteAttachments", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "attachment-id", + "in": "path", + "description": "key: id of attachment", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "attachment" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}" + ] + }, + "/users/{user-id}/messages/{message-id}/extensions": { + "get": { + "tags": [ + "users.messages.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.messages.ListExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of extension", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.messages.extension" + ], + "summary": "Create new navigation property to extensions for users", + "operationId": "users.messages.CreateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions" + ] + }, + "/users/{user-id}/messages/{message-id}/extensions/{extension-id}": { + "get": { + "tags": [ + "users.messages.extension" + ], + "summary": "Get extensions from users", + "operationId": "users.messages.GetExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.messages.extension" + ], + "summary": "Update the navigation property extensions in users", + "operationId": "users.messages.UpdateExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.messages.extension" + ], + "summary": "Delete navigation property extensions for users", + "operationId": "users.messages.DeleteExtensions", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "extension-id", + "in": "path", + "description": "key: id of extension", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "extension" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}" + ] + }, + "/users/{user-id}/messages/{message-id}/copy": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copy", + "operationId": "users.messages.copy", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "/users/{user-id}/mailFolders/{mailFolder-id}/copy" + ] + }, + "/users/{user-id}/messages/{message-id}/createForward": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action createForward", + "operationId": "users.messages.createForward", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward" + ] + }, + "/users/{user-id}/messages/{message-id}/createReply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action createReply", + "operationId": "users.messages.createReply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply" + ] + }, + "/users/{user-id}/messages/{message-id}/createReplyAll": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action createReplyAll", + "operationId": "users.messages.createReplyAll", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll" + ] + }, + "/users/{user-id}/messages/{message-id}/forward": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action forward", + "operationId": "users.messages.forward", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + }, + "ToRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward" + ] + }, + "/users/{user-id}/messages/{message-id}/move": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action move", + "operationId": "users.messages.move", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "DestinationId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "/users/{user-id}/mailFolders/{mailFolder-id}/move" + ] + }, + "/users/{user-id}/messages/{message-id}/reply": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action reply", + "operationId": "users.messages.reply", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply" + ] + }, + "/users/{user-id}/messages/{message-id}/replyAll": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action replyAll", + "operationId": "users.messages.replyAll", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Comment": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll" + ] + }, + "/users/{user-id}/messages/{message-id}/send": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action send", + "operationId": "users.messages.send", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send" + ] + }, + "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties": { + "get": { + "tags": [ + "users.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.messages.ListMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to multiValueExtendedProperties for users", + "operationId": "users.messages.CreateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties" + ] + }, + "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Get multiValueExtendedProperties from users", + "operationId": "users.messages.GetMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property multiValueExtendedProperties in users", + "operationId": "users.messages.UpdateMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.messages.multiValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property multiValueExtendedProperties for users", + "operationId": "users.messages.DeleteMultiValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "multiValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of multiValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties": { + "get": { + "tags": [ + "users.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.messages.ListSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Create new navigation property to singleValueExtendedProperties for users", + "operationId": "users.messages.CreateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties" + ] + }, + "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": { + "get": { + "tags": [ + "users.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Get singleValueExtendedProperties from users", + "operationId": "users.messages.GetSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Update the navigation property singleValueExtendedProperties in users", + "operationId": "users.messages.UpdateSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.messages.singleValueLegacyExtendedProperty" + ], + "summary": "Delete navigation property singleValueExtendedProperties for users", + "operationId": "users.messages.DeleteSingleValueExtendedProperties", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "message-id", + "in": "path", + "description": "key: id of message", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "message" + }, + { + "name": "singleValueLegacyExtendedProperty-id", + "in": "path", + "description": "key: id of singleValueLegacyExtendedProperty", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" + ] + }, + "/users/{user-id}/messages/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.messages.delta", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/delta()" + ] + }, + "/users/{user-id}/assignLicense": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action assignLicense", + "operationId": "users.assignLicense", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "addLicenses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedLicense" + } + }, + "removeLicenses": { + "type": "array", + "items": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/changePassword": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action changePassword", + "operationId": "users.changePassword", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "currentPassword": { + "type": "string", + "nullable": true + }, + "newPassword": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/checkMemberGroups": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action checkMemberGroups", + "operationId": "users.checkMemberGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupIds": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/findMeetingTimes": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action findMeetingTimes", + "operationId": "users.findMeetingTimes", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Attendees": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendeeBase" + } + ], + "nullable": true + } + }, + "LocationConstraint": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.locationConstraint" + } + ], + "nullable": true + }, + "TimeConstraint": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeConstraint" + } + ], + "nullable": true + }, + "MeetingDuration": { + "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", + "type": "string", + "format": "duration", + "nullable": true + }, + "MaxCandidates": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "IsOrganizerOptional": { + "type": "boolean", + "default": false, + "nullable": true + }, + "ReturnSuggestionReasons": { + "type": "boolean", + "default": false, + "nullable": true + }, + "MinimumAttendeePercentage": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.meetingTimeSuggestionsResult" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/getMailTips": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action getMailTips", + "operationId": "users.getMailTips", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "EmailAddresses": { + "type": "array", + "items": { + "type": "string" + } + }, + "MailTipsOptions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailTipsType" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailTips" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/getManagedAppDiagnosticStatuses()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function getManagedAppDiagnosticStatuses", + "operationId": "users.getManagedAppDiagnosticStatuses", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDiagnosticStatus" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/getManagedAppPolicies()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function getManagedAppPolicies", + "operationId": "users.getManagedAppPolicies", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/getMemberGroups": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action getMemberGroups", + "operationId": "users.getMemberGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/getMemberObjects": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action getMemberObjects", + "operationId": "users.getMemberObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "securityEnabledOnly": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/reminderView(StartDateTime={StartDateTime},EndDateTime={EndDateTime})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function reminderView", + "operationId": "users.reminderView", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "StartDateTime", + "in": "path", + "description": "Usage: StartDateTime={StartDateTime}", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "EndDateTime", + "in": "path", + "description": "Usage: EndDateTime={EndDateTime}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.reminder" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/removeAllDevicesFromManagement": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action removeAllDevicesFromManagement", + "operationId": "users.removeAllDevicesFromManagement", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/restore": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action restore", + "operationId": "users.restore", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/sendMail": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action sendMail", + "operationId": "users.sendMail", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Message": { + "$ref": "#/components/schemas/microsoft.graph.message" + }, + "SaveToSentItems": { + "type": "boolean", + "default": false, + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/wipeManagedAppRegistrationsByDeviceTag": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action wipeManagedAppRegistrationsByDeviceTag", + "operationId": "users.wipeManagedAppRegistrationsByDeviceTag", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "deviceTag": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/users/{user-id}/onenote": { + "get": { + "tags": [ + "users.onenote" + ], + "summary": "Get onenote from users", + "operationId": "users.GetOnenote", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "notebooks", + "sections", + "sectionGroups", + "pages", + "resources", + "operations" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote" + ], + "summary": "Update the navigation property onenote in users", + "operationId": "users.UpdateOnenote", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote" + ], + "summary": "Delete navigation property onenote for users", + "operationId": "users.DeleteOnenote", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/notebooks": { + "get": { + "tags": [ + "users.onenote.notebook" + ], + "summary": "Get notebooks from users", + "operationId": "users.onenote.ListNotebooks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "userRole", + "userRole desc", + "isShared", + "isShared desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc", + "links", + "links desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of notebook", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebook" + ], + "summary": "Create new navigation property to notebooks for users", + "operationId": "users.onenote.CreateNotebooks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}": { + "get": { + "tags": [ + "users.onenote.notebook" + ], + "summary": "Get notebooks from users", + "operationId": "users.onenote.GetNotebooks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebook" + ], + "summary": "Update the navigation property notebooks in users", + "operationId": "users.onenote.UpdateNotebooks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebook" + ], + "summary": "Delete navigation property notebooks for users", + "operationId": "users.onenote.DeleteNotebooks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.notebooks.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.notebooks.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.notebooks.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.notebooks.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.notebooks.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.notebooks.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.notebooks.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.notebooks.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.notebooks.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.notebooks.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.notebooks.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.notebooks.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.notebooks.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.notebooks.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.notebooks.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.notebooks.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.notebooks.sectionGroups.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.notebooks.sectionGroups.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.notebooks.sectionGroups.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.notebooks.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.notebooks.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.notebooks.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.notebooks.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSection from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSection in users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSection for users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.notebooks.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.notebooks.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.notebooks.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.notebooks.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.notebooks.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.notebooks.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.notebooks.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.notebooks.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.notebooks.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.notebooks.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.notebooks.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.notebooks.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.notebooks.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.notebooks.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.notebooks.sections.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.notebooks.sections.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.notebooks.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.notebooks.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.notebooks.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.notebooks.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.notebooks.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.notebooks.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSection from users", + "operationId": "users.onenote.notebooks.sections.pages.GetParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSection in users", + "operationId": "users.onenote.notebooks.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSection for users", + "operationId": "users.onenote.notebooks.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.notebooks.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.notebooks.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.notebooks.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.notebooks.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.notebooks.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.notebooks.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.notebooks.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.notebooks.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.notebooks.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.notebooks.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "notebook-id", + "in": "path", + "description": "key: id of notebook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "notebook" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function getRecentNotebooks", + "operationId": "users.onenote.notebooks.getRecentNotebooks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "includePersonalNotebooks", + "in": "path", + "description": "Usage: includePersonalNotebooks={includePersonalNotebooks}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recentNotebook" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/onenote/operations": { + "get": { + "tags": [ + "users.onenote.onenoteOperation" + ], + "summary": "Get operations from users", + "operationId": "users.onenote.ListOperations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "status", + "status desc", + "createdDateTime", + "createdDateTime desc", + "lastActionDateTime", + "lastActionDateTime desc", + "resourceLocation", + "resourceLocation desc", + "resourceId", + "resourceId desc", + "error", + "error desc", + "percentComplete", + "percentComplete desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteOperation", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.onenoteOperation" + ], + "summary": "Create new navigation property to operations for users", + "operationId": "users.onenote.CreateOperations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/operations/{onenoteOperation-id}": { + "get": { + "tags": [ + "users.onenote.onenoteOperation" + ], + "summary": "Get operations from users", + "operationId": "users.onenote.GetOperations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "status", + "createdDateTime", + "lastActionDateTime", + "resourceLocation", + "resourceId", + "error", + "percentComplete" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.onenoteOperation" + ], + "summary": "Update the navigation property operations in users", + "operationId": "users.onenote.UpdateOperations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.onenoteOperation" + ], + "summary": "Delete navigation property operations for users", + "operationId": "users.onenote.DeleteOperations", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteOperation-id", + "in": "path", + "description": "key: id of onenoteOperation", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteOperation" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages": { + "get": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}": { + "get": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.onenotePage" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.parentNotebook.sectionGroups.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.parentNotebook.sectionGroups.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentNotebook.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.pages.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.pages.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.pages.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.pages.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.pages.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.parentNotebook.sections.pages.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.parentNotebook.sections.pages.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.pages.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.pages.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.pages.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.notebook" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentNotebook.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentSection from users", + "operationId": "users.onenote.pages.GetParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSection in users", + "operationId": "users.onenote.pages.UpdateParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSection for users", + "operationId": "users.onenote.pages.DeleteParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.pages.parentSection.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.pages.parentSection.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.pages.parentSection.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.pages.parentSection.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.pages.parentSection.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.parentSection.pages.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.parentSection.pages.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.pages.parentSection.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.pages.parentSection.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.pages.parentSection.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenotePage-id1", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentSection.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentSection.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentSection.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentSection.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentSection.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentSection.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentSection.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentSection.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentSection.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.pages.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.pages.parentSection.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/resources": { + "get": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Get resources from users", + "operationId": "users.onenote.ListResources", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "content", + "content desc", + "contentUrl", + "contentUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteResource", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Create new navigation property to resources for users", + "operationId": "users.onenote.CreateResources", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/resources/{onenoteResource-id}": { + "get": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Get resources from users", + "operationId": "users.onenote.GetResources", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "content", + "contentUrl" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Update the navigation property resources in users", + "operationId": "users.onenote.UpdateResources", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Delete navigation property resources for users", + "operationId": "users.onenote.DeleteResources", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/resources/{onenoteResource-id}/content": { + "get": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Get media content for the navigation property resources from users", + "operationId": "users.onenote.GetResourcesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.onenoteResource" + ], + "summary": "Update media content for the navigation property resources in users", + "operationId": "users.onenote.UpdateResourcesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteResource-id", + "in": "path", + "description": "key: id of onenoteResource", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteResource" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSection from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.GetParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSection in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSection for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sectionGroups.parentNotebook.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sectionGroups.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.sectionGroups.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.sectionGroups.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.sectionGroups.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.sectionGroups.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.sectionGroups.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.sectionGroups.sections.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.sectionGroups.sections.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.sectionGroups.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.sectionGroups.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.sectionGroups.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sectionGroups.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sectionGroups.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sectionGroups.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sectionGroups.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSection from users", + "operationId": "users.onenote.sectionGroups.sections.pages.GetParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSection in users", + "operationId": "users.onenote.sectionGroups.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSection for users", + "operationId": "users.onenote.sectionGroups.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sectionGroups.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sectionGroups.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sectionGroups.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sectionGroups.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sectionGroups.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sectionGroups.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sectionGroups.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sectionGroups.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sectionGroups.onenoteSection" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sectionGroups.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections": { + "get": { + "tags": [ + "users.onenote.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.onenoteSection" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}": { + "get": { + "tags": [ + "users.onenote.onenoteSection" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.onenoteSection" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.onenoteSection" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.sections.ListPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "title", + "title desc", + "createdByAppId", + "createdByAppId desc", + "links", + "links desc", + "contentUrl", + "contentUrl desc", + "content", + "content desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "level", + "level desc", + "order", + "order desc", + "userTags", + "userTags desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenotePage", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to pages for users", + "operationId": "users.onenote.sections.CreatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get pages from users", + "operationId": "users.onenote.sections.GetPages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "title", + "createdByAppId", + "links", + "contentUrl", + "content", + "lastModifiedDateTime", + "level", + "order", + "userTags", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentSection", + "parentNotebook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property pages in users", + "operationId": "users.onenote.sections.UpdatePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property pages for users", + "operationId": "users.onenote.sections.DeletePages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get media content for the navigation property pages from users", + "operationId": "users.onenote.sections.GetPagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update media content for the navigation property pages in users", + "operationId": "users.onenote.sections.UpdatePagesContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSection", + "operationId": "users.onenote.sections.pages.copyToSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action onenotePatchContent", + "operationId": "users.onenote.sections.pages.onenotePatchContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "commands": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchContentCommand" + } + ], + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function preview", + "operationId": "users.onenote.sections.pages.preview", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreview" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview()" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sections.pages.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sections.pages.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sections.pages.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sections.pages.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.pages.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sections.pages.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.pages.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sections.pages.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sections.pages.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.pages.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.pages.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sections.pages.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.pages.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sections.pages.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sections.pages.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.pages.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.pages.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": { + "get": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Get parentSection from users", + "operationId": "users.onenote.sections.pages.GetParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Update the navigation property parentSection in users", + "operationId": "users.onenote.sections.pages.UpdateParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.onenotePage" + ], + "summary": "Delete navigation property parentSection for users", + "operationId": "users.onenote.sections.pages.DeleteParentSection", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.pages.parentSection.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.pages.parentSection.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenotePage-id", + "in": "path", + "description": "key: id of onenotePage", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenotePage" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sections.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sections.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sections.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sections.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sections.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sections.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sections.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "sectionGroup-id1", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.parentNotebook.sectionGroups.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sections.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sections.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.notebook" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sections.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sections.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sections.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sections.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get parentNotebook from users", + "operationId": "users.onenote.sections.parentSectionGroup.GetParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "userRole", + "isShared", + "sectionsUrl", + "sectionGroupsUrl", + "links", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentNotebook in users", + "operationId": "users.onenote.sections.parentSectionGroup.UpdateParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentNotebook for users", + "operationId": "users.onenote.sections.parentSectionGroup.DeleteParentNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyNotebook", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.copyNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "notebookFolder": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/copyNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/copyNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.parentSectionGroup.parentNotebook.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get parentSectionGroup from users", + "operationId": "users.onenote.sections.parentSectionGroup.GetParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property parentSectionGroup in users", + "operationId": "users.onenote.sections.parentSectionGroup.UpdateParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property parentSectionGroup for users", + "operationId": "users.onenote.sections.parentSectionGroup.DeleteParentSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentSectionGroup.ListSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "sectionsUrl", + "sectionsUrl desc", + "sectionGroupsUrl", + "sectionGroupsUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of sectionGroup", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sectionGroups for users", + "operationId": "users.onenote.sections.parentSectionGroup.CreateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sectionGroups from users", + "operationId": "users.onenote.sections.parentSectionGroup.GetSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "sectionsUrl", + "sectionGroupsUrl", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "sections", + "sectionGroups" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sectionGroups in users", + "operationId": "users.onenote.sections.parentSectionGroup.UpdateSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sectionGroups for users", + "operationId": "users.onenote.sections.parentSectionGroup.DeleteSectionGroups", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "sectionGroup-id", + "in": "path", + "description": "key: id of sectionGroup", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "sectionGroup" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentSectionGroup.ListSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "self", + "self desc", + "createdDateTime", + "createdDateTime desc", + "displayName", + "displayName desc", + "createdBy", + "createdBy desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "isDefault", + "isDefault desc", + "links", + "links desc", + "pagesUrl", + "pagesUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of onenoteSection", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Create new navigation property to sections for users", + "operationId": "users.onenote.sections.parentSectionGroup.CreateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": { + "get": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Get sections from users", + "operationId": "users.onenote.sections.parentSectionGroup.GetSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "self", + "createdDateTime", + "displayName", + "createdBy", + "lastModifiedBy", + "lastModifiedDateTime", + "isDefault", + "links", + "pagesUrl", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "parentNotebook", + "parentSectionGroup", + "pages" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Update the navigation property sections in users", + "operationId": "users.onenote.sections.parentSectionGroup.UpdateSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.onenote.sections.sectionGroup" + ], + "summary": "Delete navigation property sections for users", + "operationId": "users.onenote.sections.parentSectionGroup.DeleteSections", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToNotebook", + "operationId": "users.onenote.sections.parentSectionGroup.sections.copyToNotebook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToNotebook" + ] + }, + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action copyToSectionGroup", + "operationId": "users.onenote.sections.parentSectionGroup.sections.copyToSectionGroup", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "onenoteSection-id", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + }, + { + "name": "onenoteSection-id1", + "in": "path", + "description": "key: id of onenoteSection", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "onenoteSection" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "groupId": { + "type": "string", + "nullable": true + }, + "renameAs": { + "type": "string", + "nullable": true + }, + "siteCollectionId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup", + "/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/copyToSectionGroup" + ] + }, + "/users/{user-id}/outlook": { + "get": { + "tags": [ + "users.outlookUser" + ], + "summary": "Get outlook from users", + "operationId": "users.GetOutlook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "masterCategories" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "masterCategories" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.outlookUser" + ], + "summary": "Update the navigation property outlook in users", + "operationId": "users.UpdateOutlook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookUser" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.outlookUser" + ], + "summary": "Delete navigation property outlook for users", + "operationId": "users.DeleteOutlook", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/outlook/masterCategories": { + "get": { + "tags": [ + "users.outlook.outlookCategory" + ], + "summary": "Get masterCategories from users", + "operationId": "users.outlook.ListMasterCategories", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "color", + "color desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "color" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of outlookCategory", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.outlook.outlookCategory" + ], + "summary": "Create new navigation property to masterCategories for users", + "operationId": "users.outlook.CreateMasterCategories", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}": { + "get": { + "tags": [ + "users.outlook.outlookCategory" + ], + "summary": "Get masterCategories from users", + "operationId": "users.outlook.GetMasterCategories", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "outlookCategory-id", + "in": "path", + "description": "key: id of outlookCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "outlookCategory" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "color" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.outlook.outlookCategory" + ], + "summary": "Update the navigation property masterCategories in users", + "operationId": "users.outlook.UpdateMasterCategories", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "outlookCategory-id", + "in": "path", + "description": "key: id of outlookCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "outlookCategory" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.outlook.outlookCategory" + ], + "summary": "Delete navigation property masterCategories for users", + "operationId": "users.outlook.DeleteMasterCategories", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "outlookCategory-id", + "in": "path", + "description": "key: id of outlookCategory", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "outlookCategory" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/outlook/supportedLanguages()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function supportedLanguages", + "operationId": "users.outlook.supportedLanguages", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.localeInfo" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/users/{user-id}/outlook/supportedTimeZones()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function supportedTimeZones", + "operationId": "users.outlook.supportedTimeZones-5c4f", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.timeZoneInformation" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/outlook/supportedTimeZones(TimeZoneStandard={TimeZoneStandard})" + ] + }, + "/users/{user-id}/outlook/supportedTimeZones(TimeZoneStandard={TimeZoneStandard})": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function supportedTimeZones", + "operationId": "users.outlook.supportedTimeZones-120b", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "TimeZoneStandard", + "in": "path", + "description": "Usage: TimeZoneStandard={TimeZoneStandard}", + "required": true, + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeZoneStandard" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.timeZoneInformation" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/outlook/supportedTimeZones()" + ] + }, + "/users/{user-id}/ownedDevices": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ownedDevices from users", + "operationId": "users.ListOwnedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/ownedDevices/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of ownedDevices from users", + "operationId": "users.ListRefOwnedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.directoryObject" + ], + "summary": "Create new navigation property ref to ownedDevices for users", + "operationId": "users.CreateRefOwnedDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/ownedObjects": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ownedObjects from users", + "operationId": "users.ListOwnedObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/ownedObjects/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of ownedObjects from users", + "operationId": "users.ListRefOwnedObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.directoryObject" + ], + "summary": "Create new navigation property ref to ownedObjects for users", + "operationId": "users.CreateRefOwnedObjects", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/people": { + "get": { + "tags": [ + "users.person" + ], + "summary": "Get people from users", + "operationId": "users.ListPeople", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "displayName", + "displayName desc", + "givenName", + "givenName desc", + "surname", + "surname desc", + "birthday", + "birthday desc", + "personNotes", + "personNotes desc", + "isFavorite", + "isFavorite desc", + "scoredEmailAddresses", + "scoredEmailAddresses desc", + "phones", + "phones desc", + "postalAddresses", + "postalAddresses desc", + "websites", + "websites desc", + "jobTitle", + "jobTitle desc", + "companyName", + "companyName desc", + "yomiCompany", + "yomiCompany desc", + "department", + "department desc", + "officeLocation", + "officeLocation desc", + "profession", + "profession desc", + "personType", + "personType desc", + "userPrincipalName", + "userPrincipalName desc", + "imAddress", + "imAddress desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "givenName", + "surname", + "birthday", + "personNotes", + "isFavorite", + "scoredEmailAddresses", + "phones", + "postalAddresses", + "websites", + "jobTitle", + "companyName", + "yomiCompany", + "department", + "officeLocation", + "profession", + "personType", + "userPrincipalName", + "imAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of person", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.person" + ], + "summary": "Create new navigation property to people for users", + "operationId": "users.CreatePeople", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/people/{person-id}": { + "get": { + "tags": [ + "users.person" + ], + "summary": "Get people from users", + "operationId": "users.GetPeople", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "person-id", + "in": "path", + "description": "key: id of person", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "person" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "displayName", + "givenName", + "surname", + "birthday", + "personNotes", + "isFavorite", + "scoredEmailAddresses", + "phones", + "postalAddresses", + "websites", + "jobTitle", + "companyName", + "yomiCompany", + "department", + "officeLocation", + "profession", + "personType", + "userPrincipalName", + "imAddress" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.person" + ], + "summary": "Update the navigation property people in users", + "operationId": "users.UpdatePeople", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "person-id", + "in": "path", + "description": "key: id of person", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "person" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.person" + ], + "summary": "Delete navigation property people for users", + "operationId": "users.DeletePeople", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "person-id", + "in": "path", + "description": "key: id of person", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "person" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/photo": { + "get": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Get photo from users", + "operationId": "users.GetPhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Update the navigation property photo in users", + "operationId": "users.UpdatePhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Delete navigation property photo for users", + "operationId": "users.DeletePhoto", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/photo/$value": { + "get": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Get media content for the navigation property photo from users", + "operationId": "users.GetPhotoContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Update media content for the navigation property photo in users", + "operationId": "users.UpdatePhotoContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/photos": { + "get": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Get photos from users", + "operationId": "users.ListPhotos", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "height", + "height desc", + "width", + "width desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of profilePhoto", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Create new navigation property to photos for users", + "operationId": "users.CreatePhotos", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/photos/{profilePhoto-id}": { + "get": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Get photos from users", + "operationId": "users.GetPhotos", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "width" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Update the navigation property photos in users", + "operationId": "users.UpdatePhotos", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Delete navigation property photos for users", + "operationId": "users.DeletePhotos", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/photos/{profilePhoto-id}/$value": { + "get": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Get media content for the navigation property photos from users", + "operationId": "users.GetPhotosContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "users.profilePhoto" + ], + "summary": "Update media content for the navigation property photos in users", + "operationId": "users.UpdatePhotosContent", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "profilePhoto-id", + "in": "path", + "description": "key: id of profilePhoto", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "profilePhoto" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/planner": { + "get": { + "tags": [ + "users.plannerUser" + ], + "summary": "Get planner from users", + "operationId": "users.GetPlanner", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "tasks", + "plans" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "plans" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerUser" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.plannerUser" + ], + "summary": "Update the navigation property planner in users", + "operationId": "users.UpdatePlanner", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.plannerUser" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.plannerUser" + ], + "summary": "Delete navigation property planner for users", + "operationId": "users.DeletePlanner", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/planner/plans": { + "get": { + "tags": [ + "users.planner.plannerPlan" + ], + "summary": "Get plans from users", + "operationId": "users.planner.ListPlans", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "owner", + "title", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "tasks", + "buckets", + "details" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/planner/plans/$ref": { + "get": { + "tags": [ + "users.planner.plannerPlan" + ], + "summary": "Get ref of plans from users", + "operationId": "users.planner.ListRefPlans", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "owner", + "owner desc", + "title", + "title desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerPlan", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.planner.plannerPlan" + ], + "summary": "Create new navigation property ref to plans for users", + "operationId": "users.planner.CreateRefPlans", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/planner/tasks": { + "get": { + "tags": [ + "users.planner.plannerTask" + ], + "summary": "Get tasks from users", + "operationId": "users.planner.ListTasks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "planId", + "bucketId", + "title", + "orderHint", + "assigneePriority", + "percentComplete", + "startDateTime", + "createdDateTime", + "dueDateTime", + "hasDescription", + "previewType", + "completedDateTime", + "completedBy", + "referenceCount", + "checklistItemCount", + "activeChecklistItemCount", + "appliedCategories", + "assignments", + "conversationThreadId", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "details", + "assignedToTaskBoardFormat", + "progressTaskBoardFormat", + "bucketTaskBoardFormat" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/planner/tasks/$ref": { + "get": { + "tags": [ + "users.planner.plannerTask" + ], + "summary": "Get ref of tasks from users", + "operationId": "users.planner.ListRefTasks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "planId", + "planId desc", + "bucketId", + "bucketId desc", + "title", + "title desc", + "orderHint", + "orderHint desc", + "assigneePriority", + "assigneePriority desc", + "percentComplete", + "percentComplete desc", + "startDateTime", + "startDateTime desc", + "createdDateTime", + "createdDateTime desc", + "dueDateTime", + "dueDateTime desc", + "hasDescription", + "hasDescription desc", + "previewType", + "previewType desc", + "completedDateTime", + "completedDateTime desc", + "completedBy", + "completedBy desc", + "referenceCount", + "referenceCount desc", + "checklistItemCount", + "checklistItemCount desc", + "activeChecklistItemCount", + "activeChecklistItemCount desc", + "appliedCategories", + "appliedCategories desc", + "assignments", + "assignments desc", + "conversationThreadId", + "conversationThreadId desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of plannerTask", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.planner.plannerTask" + ], + "summary": "Create new navigation property ref to tasks for users", + "operationId": "users.planner.CreateRefTasks", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/registeredDevices": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get registeredDevices from users", + "operationId": "users.ListRegisteredDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "deletedDateTime" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/registeredDevices/$ref": { + "get": { + "tags": [ + "users.directoryObject" + ], + "summary": "Get ref of registeredDevices from users", + "operationId": "users.ListRefRegisteredDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "deletedDateTime", + "deletedDateTime desc" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property links", + "content": { + "application/json": { + "schema": { + "title": "Collection of links of directoryObject", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "users.directoryObject" + ], + "summary": "Create new navigation property ref to registeredDevices for users", + "operationId": "users.CreateRefRegisteredDevices", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property ref value", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "object" + } + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property link.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/{user-id}/settings": { + "get": { + "tags": [ + "users.userSettings" + ], + "summary": "Get settings from users", + "operationId": "users.GetSettings", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "contributionToContentDiscoveryDisabled", + "contributionToContentDiscoveryAsOrganizationDisabled" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userSettings" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "users.userSettings" + ], + "summary": "Update the navigation property settings in users", + "operationId": "users.UpdateSettings", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.userSettings" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "users.userSettings" + ], + "summary": "Delete navigation property settings for users", + "operationId": "users.DeleteSettings", + "parameters": [ + { + "name": "user-id", + "in": "path", + "description": "key: id of user", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "user" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/users/delta()": { + "get": { + "tags": [ + "users.Functions" + ], + "summary": "Invoke function delta", + "operationId": "users.delta", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/users/{user-id}/calendar/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendar/events/{event-id}/instances/delta()", + "/users/{user-id}/calendar/events/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/calendarView/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/calendars/{calendar-id}/events/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/calendarView/{event-id}/calendar/events/delta()", + "/users/{user-id}/calendarView/{event-id}/instances/delta()", + "/users/{user-id}/calendarView/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta()", + "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta()", + "/users/{user-id}/contactFolders/delta()", + "/users/{user-id}/contacts/delta()", + "/users/{user-id}/events/{event-id}/calendar/calendarView/delta()", + "/users/{user-id}/events/{event-id}/calendar/events/delta()", + "/users/{user-id}/events/{event-id}/instances/delta()", + "/users/{user-id}/events/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta()", + "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta()", + "/users/{user-id}/mailFolders/delta()", + "/users/{user-id}/messages/delta()" + ] + }, + "/users/getByIds": { + "post": { + "tags": [ + "users.Actions" + ], + "summary": "Invoke action getByIds", + "operationId": "users.getByIds", + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "ids": { + "type": "array", + "items": { + "type": "string" + } + }, + "types": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks": { + "get": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Get entities from workbooks", + "operationId": "workbooks.driveItem.ListDriveItem", + "parameters": [ + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entities", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + }, + "post": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Add new entity to workbooks", + "operationId": "workbooks.driveItem.CreateDriveItem", + "requestBody": { + "description": "New entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}": { + "get": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Get entity from workbooks by key", + "operationId": "workbooks.driveItem.GetDriveItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved entity", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Update entity in workbooks", + "operationId": "workbooks.driveItem.UpdateDriveItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Delete entity from workbooks", + "operationId": "workbooks.driveItem.DeleteDriveItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/children": { + "get": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Get children from workbooks", + "operationId": "workbooks.ListChildren", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "createdBy", + "createdBy desc", + "createdDateTime", + "createdDateTime desc", + "description", + "description desc", + "eTag", + "eTag desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "name", + "name desc", + "parentReference", + "parentReference desc", + "webUrl", + "webUrl desc", + "audio", + "audio desc", + "content", + "content desc", + "cTag", + "cTag desc", + "deleted", + "deleted desc", + "file", + "file desc", + "fileSystemInfo", + "fileSystemInfo desc", + "folder", + "folder desc", + "image", + "image desc", + "location", + "location desc", + "package", + "package desc", + "photo", + "photo desc", + "publication", + "publication desc", + "remoteItem", + "remoteItem desc", + "root", + "root desc", + "searchResult", + "searchResult desc", + "shared", + "shared desc", + "sharepointIds", + "sharepointIds desc", + "size", + "size desc", + "specialFolder", + "specialFolder desc", + "video", + "video desc", + "webDavUrl", + "webDavUrl desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Create new navigation property to children for workbooks", + "operationId": "workbooks.CreateChildren", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/children/{driveItem-id1}": { + "get": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Get children from workbooks", + "operationId": "workbooks.GetChildren", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItem-id1", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Update the navigation property children in workbooks", + "operationId": "workbooks.UpdateChildren", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItem-id1", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Delete navigation property children for workbooks", + "operationId": "workbooks.DeleteChildren", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItem-id1", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/children/{driveItem-id1}/content": { + "get": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Get media content for the navigation property children from workbooks", + "operationId": "workbooks.GetChildrenContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItem-id1", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Update media content for the navigation property children in workbooks", + "operationId": "workbooks.UpdateChildrenContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItem-id1", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/content": { + "get": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Get media content for driveItem from workbooks", + "operationId": "workbooks.driveItem.GetContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "workbooks.driveItem" + ], + "summary": "Update media content for driveItem in workbooks", + "operationId": "workbooks.driveItem.UpdateContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem": { + "get": { + "tags": [ + "workbooks.listItem" + ], + "summary": "Get listItem from workbooks", + "operationId": "workbooks.GetListItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "contentType", + "sharepointIds", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "driveItem", + "fields", + "versions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.listItem" + ], + "summary": "Update the navigation property listItem in workbooks", + "operationId": "workbooks.UpdateListItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.listItem" + ], + "summary": "Delete navigation property listItem for workbooks", + "operationId": "workbooks.DeleteListItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/driveItem": { + "get": { + "tags": [ + "workbooks.listItem.driveItem" + ], + "summary": "Get driveItem from workbooks", + "operationId": "workbooks.listItem.GetDriveItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "createdBy", + "createdDateTime", + "description", + "eTag", + "lastModifiedBy", + "lastModifiedDateTime", + "name", + "parentReference", + "webUrl", + "audio", + "content", + "cTag", + "deleted", + "file", + "fileSystemInfo", + "folder", + "image", + "location", + "package", + "photo", + "publication", + "remoteItem", + "root", + "searchResult", + "shared", + "sharepointIds", + "size", + "specialFolder", + "video", + "webDavUrl", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "createdByUser", + "lastModifiedByUser", + "children", + "listItem", + "permissions", + "thumbnails", + "versions", + "workbook" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.listItem.driveItem" + ], + "summary": "Update the navigation property driveItem in workbooks", + "operationId": "workbooks.listItem.UpdateDriveItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.listItem.driveItem" + ], + "summary": "Delete navigation property driveItem for workbooks", + "operationId": "workbooks.listItem.DeleteDriveItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/driveItem/content": { + "get": { + "tags": [ + "workbooks.listItem.driveItem" + ], + "summary": "Get media content for the navigation property driveItem from workbooks", + "operationId": "workbooks.listItem.GetDriveItemContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "workbooks.listItem.driveItem" + ], + "summary": "Update media content for the navigation property driveItem in workbooks", + "operationId": "workbooks.listItem.UpdateDriveItemContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/fields": { + "get": { + "tags": [ + "workbooks.listItem.fieldValueSet" + ], + "summary": "Get fields from workbooks", + "operationId": "workbooks.listItem.GetFields", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.listItem.fieldValueSet" + ], + "summary": "Update the navigation property fields in workbooks", + "operationId": "workbooks.listItem.UpdateFields", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.listItem.fieldValueSet" + ], + "summary": "Delete navigation property fields for workbooks", + "operationId": "workbooks.listItem.DeleteFields", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/versions": { + "get": { + "tags": [ + "workbooks.listItem.listItemVersion" + ], + "summary": "Get versions from workbooks", + "operationId": "workbooks.listItem.ListVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of listItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.listItem.listItemVersion" + ], + "summary": "Create new navigation property to versions for workbooks", + "operationId": "workbooks.listItem.CreateVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/versions/{listItemVersion-id}": { + "get": { + "tags": [ + "workbooks.listItem.listItemVersion" + ], + "summary": "Get versions from workbooks", + "operationId": "workbooks.listItem.GetVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "fields" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fields" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.listItem.listItemVersion" + ], + "summary": "Update the navigation property versions in workbooks", + "operationId": "workbooks.listItem.UpdateVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.listItem.listItemVersion" + ], + "summary": "Delete navigation property versions for workbooks", + "operationId": "workbooks.listItem.DeleteVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/versions/{listItemVersion-id}/fields": { + "get": { + "tags": [ + "workbooks.listItem.versions.fieldValueSet" + ], + "summary": "Get fields from workbooks", + "operationId": "workbooks.listItem.versions.GetFields", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.listItem.versions.fieldValueSet" + ], + "summary": "Update the navigation property fields in workbooks", + "operationId": "workbooks.listItem.versions.UpdateFields", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.listItem.versions.fieldValueSet" + ], + "summary": "Delete navigation property fields for workbooks", + "operationId": "workbooks.listItem.versions.DeleteFields", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/listItem/versions/{listItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "workbooks.listItem.versions.restoreVersion", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "listItemVersion-id", + "in": "path", + "description": "key: id of listItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "listItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/versions/{driveItemVersion-id}/restoreVersion" + ] + }, + "/workbooks/{workbook-id}/copy": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action copy", + "operationId": "workbooks.copy", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "parentReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemReference" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/createLink": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action createLink", + "operationId": "workbooks.createLink", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "type": { + "type": "string" + }, + "scope": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/createUploadSession": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action createUploadSession", + "operationId": "workbooks.createUploadSession", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "item": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItemUploadableProperties" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.uploadSession" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/delta()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function delta", + "operationId": "workbooks.delta-fa14", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/delta(token={token})", + "/workbooks/{workbook-id}/workbook/functions/delta" + ] + }, + "/workbooks/{workbook-id}/delta(token={token})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function delta", + "operationId": "workbooks.delta-209a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "token", + "in": "path", + "description": "Usage: token={token}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/delta()", + "/workbooks/{workbook-id}/workbook/functions/delta" + ] + }, + "/workbooks/{workbook-id}/invite": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action invite", + "operationId": "workbooks.invite", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "requireSignIn": { + "type": "boolean", + "default": false, + "nullable": true + }, + "roles": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "sendInvitation": { + "type": "boolean", + "default": false, + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "recipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveRecipient" + } + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/preview": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action preview", + "operationId": "workbooks.preview", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "page": { + "type": "string", + "nullable": true + }, + "zoom": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemPreviewInfo" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/search(q={q})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function search", + "operationId": "workbooks.search", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "q", + "in": "path", + "description": "Usage: q={q}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + } + }, + "/workbooks/{workbook-id}/permissions": { + "get": { + "tags": [ + "workbooks.permission" + ], + "summary": "Get permissions from workbooks", + "operationId": "workbooks.ListPermissions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "grantedTo", + "grantedTo desc", + "inheritedFrom", + "inheritedFrom desc", + "invitation", + "invitation desc", + "link", + "link desc", + "roles", + "roles desc", + "shareId", + "shareId desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "grantedTo", + "inheritedFrom", + "invitation", + "link", + "roles", + "shareId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of permission", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.permission" + ], + "summary": "Create new navigation property to permissions for workbooks", + "operationId": "workbooks.CreatePermissions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/permissions/{permission-id}": { + "get": { + "tags": [ + "workbooks.permission" + ], + "summary": "Get permissions from workbooks", + "operationId": "workbooks.GetPermissions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "permission-id", + "in": "path", + "description": "key: id of permission", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "permission" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "grantedTo", + "inheritedFrom", + "invitation", + "link", + "roles", + "shareId" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.permission" + ], + "summary": "Update the navigation property permissions in workbooks", + "operationId": "workbooks.UpdatePermissions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "permission-id", + "in": "path", + "description": "key: id of permission", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "permission" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.permission" + ], + "summary": "Delete navigation property permissions for workbooks", + "operationId": "workbooks.DeletePermissions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "permission-id", + "in": "path", + "description": "key: id of permission", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "permission" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/thumbnails": { + "get": { + "tags": [ + "workbooks.thumbnailSet" + ], + "summary": "Get thumbnails from workbooks", + "operationId": "workbooks.ListThumbnails", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "large", + "large desc", + "medium", + "medium desc", + "small", + "small desc", + "source", + "source desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "large", + "medium", + "small", + "source" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of thumbnailSet", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.thumbnailSet" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.thumbnailSet" + ], + "summary": "Create new navigation property to thumbnails for workbooks", + "operationId": "workbooks.CreateThumbnails", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.thumbnailSet" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.thumbnailSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/thumbnails/{thumbnailSet-id}": { + "get": { + "tags": [ + "workbooks.thumbnailSet" + ], + "summary": "Get thumbnails from workbooks", + "operationId": "workbooks.GetThumbnails", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "thumbnailSet-id", + "in": "path", + "description": "key: id of thumbnailSet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "thumbnailSet" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "large", + "medium", + "small", + "source" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.thumbnailSet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.thumbnailSet" + ], + "summary": "Update the navigation property thumbnails in workbooks", + "operationId": "workbooks.UpdateThumbnails", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "thumbnailSet-id", + "in": "path", + "description": "key: id of thumbnailSet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "thumbnailSet" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.thumbnailSet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.thumbnailSet" + ], + "summary": "Delete navigation property thumbnails for workbooks", + "operationId": "workbooks.DeleteThumbnails", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "thumbnailSet-id", + "in": "path", + "description": "key: id of thumbnailSet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "thumbnailSet" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/versions": { + "get": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Get versions from workbooks", + "operationId": "workbooks.ListVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "lastModifiedBy", + "lastModifiedBy desc", + "lastModifiedDateTime", + "lastModifiedDateTime desc", + "publication", + "publication desc", + "content", + "content desc", + "size", + "size desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "content", + "size" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of driveItemVersion", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItemVersion" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Create new navigation property to versions for workbooks", + "operationId": "workbooks.CreateVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItemVersion" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/versions/{driveItemVersion-id}": { + "get": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Get versions from workbooks", + "operationId": "workbooks.GetVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItemVersion-id", + "in": "path", + "description": "key: id of driveItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItemVersion" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "lastModifiedBy", + "lastModifiedDateTime", + "publication", + "content", + "size" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItemVersion" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Update the navigation property versions in workbooks", + "operationId": "workbooks.UpdateVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItemVersion-id", + "in": "path", + "description": "key: id of driveItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItemVersion" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.driveItemVersion" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Delete navigation property versions for workbooks", + "operationId": "workbooks.DeleteVersions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItemVersion-id", + "in": "path", + "description": "key: id of driveItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItemVersion" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/versions/{driveItemVersion-id}/content": { + "get": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Get media content for the navigation property versions from workbooks", + "operationId": "workbooks.GetVersionsContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItemVersion-id", + "in": "path", + "description": "key: id of driveItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItemVersion" + } + ], + "responses": { + "200": { + "description": "Retrieved media content", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "put": { + "tags": [ + "workbooks.driveItemVersion" + ], + "summary": "Update media content for the navigation property versions in workbooks", + "operationId": "workbooks.UpdateVersionsContent", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItemVersion-id", + "in": "path", + "description": "key: id of driveItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItemVersion" + } + ], + "requestBody": { + "description": "New media content.", + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/versions/{driveItemVersion-id}/restoreVersion": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action restoreVersion", + "operationId": "workbooks.versions.restoreVersion", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "driveItemVersion-id", + "in": "path", + "description": "key: id of driveItemVersion", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItemVersion" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/listItem/versions/{listItemVersion-id}/restoreVersion" + ] + }, + "/workbooks/{workbook-id}/workbook": { + "get": { + "tags": [ + "workbooks.workbook" + ], + "summary": "Get workbook from workbooks", + "operationId": "workbooks.GetWorkbook", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "application", + "names", + "tables", + "worksheets", + "functions" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "application", + "names", + "tables", + "worksheets", + "functions" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.workbook" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook" + ], + "summary": "Update the navigation property workbook in workbooks", + "operationId": "workbooks.UpdateWorkbook", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.workbook" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook" + ], + "summary": "Delete navigation property workbook for workbooks", + "operationId": "workbooks.DeleteWorkbook", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drive/items/{workbook-id}/workbook/application": { + "get": { + "tags": [ + "workbooks.workbook.workbookApplication", + "workbook" + ], + "summary": "Get application from workbooks.", + "operationId": "getWorkbookApplication", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "calculationMode" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Application" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.workbookApplication" + ], + "summary": "Update the navigation property application in workbooks", + "operationId": "workbooks.workbook.UpdateApplication", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Application" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.workbookApplication" + ], + "summary": "Delete navigation property application for workbooks", + "operationId": "workbooks.workbook.DeleteApplication", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drive/items/{workbook-id}/workbook/application/calculate": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Recalculate all currently opened workbooks in Excel.", + "operationId": "calculateWorkbookApplication", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CalculationType" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions": { + "get": { + "tags": [ + "workbooks.workbook.workbookFunctions" + ], + "summary": "Get functions from workbooks", + "operationId": "workbooks.workbook.GetFunctions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctions" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.workbookFunctions" + ], + "summary": "Update the navigation property functions in workbooks", + "operationId": "workbooks.workbook.UpdateFunctions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctions" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.workbookFunctions" + ], + "summary": "Delete navigation property functions for workbooks", + "operationId": "workbooks.workbook.DeleteFunctions", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/workbook/functions/abs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action abs", + "operationId": "workbooks.workbook.functions.abs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/accrInt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action accrInt", + "operationId": "workbooks.workbook.functions.accrInt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "issue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "firstInterest": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "par": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "calcMethod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/accrIntM": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action accrIntM", + "operationId": "workbooks.workbook.functions.accrIntM", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "issue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "par": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/acos": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action acos", + "operationId": "workbooks.workbook.functions.acos", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/acosh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action acosh", + "operationId": "workbooks.workbook.functions.acosh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/acot": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action acot", + "operationId": "workbooks.workbook.functions.acot", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/acoth": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action acoth", + "operationId": "workbooks.workbook.functions.acoth", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/amorDegrc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action amorDegrc", + "operationId": "workbooks.workbook.functions.amorDegrc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "datePurchased": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "firstPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "period": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/amorLinc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action amorLinc", + "operationId": "workbooks.workbook.functions.amorLinc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "datePurchased": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "firstPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "period": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/and": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action and", + "operationId": "workbooks.workbook.functions.and", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/arabic": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action arabic", + "operationId": "workbooks.workbook.functions.arabic", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/areas": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action areas", + "operationId": "workbooks.workbook.functions.areas", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "reference": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/asc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action asc", + "operationId": "workbooks.workbook.functions.asc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/asin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action asin", + "operationId": "workbooks.workbook.functions.asin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/asinh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action asinh", + "operationId": "workbooks.workbook.functions.asinh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/atan": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action atan", + "operationId": "workbooks.workbook.functions.atan", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/atan2": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action atan2", + "operationId": "workbooks.workbook.functions.atan2", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "xNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/atanh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action atanh", + "operationId": "workbooks.workbook.functions.atanh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/aveDev": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action aveDev", + "operationId": "workbooks.workbook.functions.aveDev", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/average": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action average", + "operationId": "workbooks.workbook.functions.average", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/averageA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action averageA", + "operationId": "workbooks.workbook.functions.averageA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/averageIf": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action averageIf", + "operationId": "workbooks.workbook.functions.averageIf", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "range": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "averageRange": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/averageIfs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action averageIfs", + "operationId": "workbooks.workbook.functions.averageIfs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "averageRange": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bahtText": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bahtText", + "operationId": "workbooks.workbook.functions.bahtText", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/base": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action base", + "operationId": "workbooks.workbook.functions.base", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "radix": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "minLength": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/besselI": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action besselI", + "operationId": "workbooks.workbook.functions.besselI", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "n": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/besselJ": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action besselJ", + "operationId": "workbooks.workbook.functions.besselJ", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "n": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/besselK": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action besselK", + "operationId": "workbooks.workbook.functions.besselK", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "n": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/besselY": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action besselY", + "operationId": "workbooks.workbook.functions.besselY", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "n": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/beta_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action beta_Dist", + "operationId": "workbooks.workbook.functions.beta_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "beta": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "A": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "B": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/beta_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action beta_Inv", + "operationId": "workbooks.workbook.functions.beta_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "beta": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "A": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "B": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bin2Dec": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bin2Dec", + "operationId": "workbooks.workbook.functions.bin2Dec", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bin2Hex": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bin2Hex", + "operationId": "workbooks.workbook.functions.bin2Hex", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bin2Oct": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bin2Oct", + "operationId": "workbooks.workbook.functions.bin2Oct", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/binom_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action binom_Dist", + "operationId": "workbooks.workbook.functions.binom_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "numberS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "trials": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "probabilityS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/binom_Dist_Range": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action binom_Dist_Range", + "operationId": "workbooks.workbook.functions.binom_Dist_Range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "trials": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "probabilityS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberS2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/binom_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action binom_Inv", + "operationId": "workbooks.workbook.functions.binom_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "trials": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "probabilityS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bitand": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bitand", + "operationId": "workbooks.workbook.functions.bitand", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "number2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bitlshift": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bitlshift", + "operationId": "workbooks.workbook.functions.bitlshift", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "shiftAmount": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bitor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bitor", + "operationId": "workbooks.workbook.functions.bitor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "number2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bitrshift": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bitrshift", + "operationId": "workbooks.workbook.functions.bitrshift", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "shiftAmount": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/bitxor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action bitxor", + "operationId": "workbooks.workbook.functions.bitxor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "number2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ceiling_Math": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ceiling_Math", + "operationId": "workbooks.workbook.functions.ceiling_Math", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mode": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ceiling_Precise": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ceiling_Precise", + "operationId": "workbooks.workbook.functions.ceiling_Precise", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/char": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action char", + "operationId": "workbooks.workbook.functions.char", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/chiSq_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action chiSq_Dist", + "operationId": "workbooks.workbook.functions.chiSq_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/chiSq_Dist_RT": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action chiSq_Dist_RT", + "operationId": "workbooks.workbook.functions.chiSq_Dist_RT", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/chiSq_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action chiSq_Inv", + "operationId": "workbooks.workbook.functions.chiSq_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/chiSq_Inv_RT": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action chiSq_Inv_RT", + "operationId": "workbooks.workbook.functions.chiSq_Inv_RT", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/choose": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action choose", + "operationId": "workbooks.workbook.functions.choose", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "indexNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/clean": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clean", + "operationId": "workbooks.workbook.functions.clean", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/code": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action code", + "operationId": "workbooks.workbook.functions.code", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/columns": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action columns", + "operationId": "workbooks.workbook.functions.columns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/combin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action combin", + "operationId": "workbooks.workbook.functions.combin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberChosen": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/combina": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action combina", + "operationId": "workbooks.workbook.functions.combina", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberChosen": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/complex": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action complex", + "operationId": "workbooks.workbook.functions.complex", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "realNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "iNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "suffix": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/concatenate": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action concatenate", + "operationId": "workbooks.workbook.functions.concatenate", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/confidence_Norm": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action confidence_Norm", + "operationId": "workbooks.workbook.functions.confidence_Norm", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "size": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/confidence_T": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action confidence_T", + "operationId": "workbooks.workbook.functions.confidence_T", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "size": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/convert": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action convert", + "operationId": "workbooks.workbook.functions.convert", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fromUnit": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "toUnit": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/cos": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action cos", + "operationId": "workbooks.workbook.functions.cos", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/cosh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action cosh", + "operationId": "workbooks.workbook.functions.cosh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/cot": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action cot", + "operationId": "workbooks.workbook.functions.cot", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coth": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coth", + "operationId": "workbooks.workbook.functions.coth", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/count": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action count", + "operationId": "workbooks.workbook.functions.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/functions/countA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action countA", + "operationId": "workbooks.workbook.functions.countA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/countBlank": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action countBlank", + "operationId": "workbooks.workbook.functions.countBlank", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "range": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/countIf": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action countIf", + "operationId": "workbooks.workbook.functions.countIf", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "range": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/countIfs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action countIfs", + "operationId": "workbooks.workbook.functions.countIfs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coupDayBs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coupDayBs", + "operationId": "workbooks.workbook.functions.coupDayBs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coupDays": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coupDays", + "operationId": "workbooks.workbook.functions.coupDays", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coupDaysNc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coupDaysNc", + "operationId": "workbooks.workbook.functions.coupDaysNc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coupNcd": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coupNcd", + "operationId": "workbooks.workbook.functions.coupNcd", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coupNum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coupNum", + "operationId": "workbooks.workbook.functions.coupNum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/coupPcd": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action coupPcd", + "operationId": "workbooks.workbook.functions.coupPcd", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/csc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action csc", + "operationId": "workbooks.workbook.functions.csc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/csch": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action csch", + "operationId": "workbooks.workbook.functions.csch", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/cumIPmt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action cumIPmt", + "operationId": "workbooks.workbook.functions.cumIPmt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/cumPrinc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action cumPrinc", + "operationId": "workbooks.workbook.functions.cumPrinc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/date": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action date", + "operationId": "workbooks.workbook.functions.date", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "year": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "month": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "day": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/datevalue": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action datevalue", + "operationId": "workbooks.workbook.functions.datevalue", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "dateText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/daverage": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action daverage", + "operationId": "workbooks.workbook.functions.daverage", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/day": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action day", + "operationId": "workbooks.workbook.functions.day", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/days": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action days", + "operationId": "workbooks.workbook.functions.days", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "endDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/days360": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action days360", + "operationId": "workbooks.workbook.functions.days360", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "method": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/db": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action db", + "operationId": "workbooks.workbook.functions.db", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "life": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "period": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "month": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dbcs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dbcs", + "operationId": "workbooks.workbook.functions.dbcs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dcount": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dcount", + "operationId": "workbooks.workbook.functions.dcount", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dcountA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dcountA", + "operationId": "workbooks.workbook.functions.dcountA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ddb": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ddb", + "operationId": "workbooks.workbook.functions.ddb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "life": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "period": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "factor": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dec2Bin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dec2Bin", + "operationId": "workbooks.workbook.functions.dec2Bin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dec2Hex": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dec2Hex", + "operationId": "workbooks.workbook.functions.dec2Hex", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dec2Oct": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dec2Oct", + "operationId": "workbooks.workbook.functions.dec2Oct", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/decimal": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action decimal", + "operationId": "workbooks.workbook.functions.decimal", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "radix": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/degrees": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action degrees", + "operationId": "workbooks.workbook.functions.degrees", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "angle": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/delta": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action delta", + "operationId": "workbooks.workbook.functions.delta", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "number2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/delta()", + "/workbooks/{workbook-id}/delta(token={token})" + ] + }, + "/workbooks/{workbook-id}/workbook/functions/devSq": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action devSq", + "operationId": "workbooks.workbook.functions.devSq", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dget": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dget", + "operationId": "workbooks.workbook.functions.dget", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/disc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action disc", + "operationId": "workbooks.workbook.functions.disc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dmax": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dmax", + "operationId": "workbooks.workbook.functions.dmax", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dmin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dmin", + "operationId": "workbooks.workbook.functions.dmin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dollar": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dollar", + "operationId": "workbooks.workbook.functions.dollar", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "decimals": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dollarDe": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dollarDe", + "operationId": "workbooks.workbook.functions.dollarDe", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fractionalDollar": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fraction": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dollarFr": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dollarFr", + "operationId": "workbooks.workbook.functions.dollarFr", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "decimalDollar": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fraction": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dproduct": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dproduct", + "operationId": "workbooks.workbook.functions.dproduct", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dstDev": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dstDev", + "operationId": "workbooks.workbook.functions.dstDev", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dstDevP": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dstDevP", + "operationId": "workbooks.workbook.functions.dstDevP", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dsum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dsum", + "operationId": "workbooks.workbook.functions.dsum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/duration": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action duration", + "operationId": "workbooks.workbook.functions.duration", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "coupon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yld": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dvar": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dvar", + "operationId": "workbooks.workbook.functions.dvar", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/dvarP": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action dvarP", + "operationId": "workbooks.workbook.functions.dvarP", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "database": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "field": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ecma_Ceiling": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ecma_Ceiling", + "operationId": "workbooks.workbook.functions.ecma_Ceiling", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/edate": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action edate", + "operationId": "workbooks.workbook.functions.edate", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "months": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/effect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action effect", + "operationId": "workbooks.workbook.functions.effect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "nominalRate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "npery": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/eoMonth": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action eoMonth", + "operationId": "workbooks.workbook.functions.eoMonth", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "months": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/erf": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action erf", + "operationId": "workbooks.workbook.functions.erf", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "lowerLimit": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "upperLimit": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/erf_Precise": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action erf_Precise", + "operationId": "workbooks.workbook.functions.erf_Precise", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "X": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/erfC": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action erfC", + "operationId": "workbooks.workbook.functions.erfC", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/erfC_Precise": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action erfC_Precise", + "operationId": "workbooks.workbook.functions.erfC_Precise", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "X": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/error_Type": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action error_Type", + "operationId": "workbooks.workbook.functions.error_Type", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "errorVal": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/even": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action even", + "operationId": "workbooks.workbook.functions.even", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/exact": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action exact", + "operationId": "workbooks.workbook.functions.exact", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "text2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/exp": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action exp", + "operationId": "workbooks.workbook.functions.exp", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/expon_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action expon_Dist", + "operationId": "workbooks.workbook.functions.expon_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "lambda": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/f_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action f_Dist", + "operationId": "workbooks.workbook.functions.f_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/f_Dist_RT": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action f_Dist_RT", + "operationId": "workbooks.workbook.functions.f_Dist_RT", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/f_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action f_Inv", + "operationId": "workbooks.workbook.functions.f_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/f_Inv_RT": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action f_Inv_RT", + "operationId": "workbooks.workbook.functions.f_Inv_RT", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/fact": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action fact", + "operationId": "workbooks.workbook.functions.fact", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/factDouble": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action factDouble", + "operationId": "workbooks.workbook.functions.factDouble", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/false": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action false", + "operationId": "workbooks.workbook.functions.false", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/find": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action find", + "operationId": "workbooks.workbook.functions.find", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "findText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "withinText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/findB": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action findB", + "operationId": "workbooks.workbook.functions.findB", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "findText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "withinText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/fisher": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action fisher", + "operationId": "workbooks.workbook.functions.fisher", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/fisherInv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action fisherInv", + "operationId": "workbooks.workbook.functions.fisherInv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "y": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/fixed": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action fixed", + "operationId": "workbooks.workbook.functions.fixed", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "decimals": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "noCommas": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/floor_Math": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action floor_Math", + "operationId": "workbooks.workbook.functions.floor_Math", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mode": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/floor_Precise": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action floor_Precise", + "operationId": "workbooks.workbook.functions.floor_Precise", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/fv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action fv", + "operationId": "workbooks.workbook.functions.fv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pmt": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/fvschedule": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action fvschedule", + "operationId": "workbooks.workbook.functions.fvschedule", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "principal": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "schedule": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gamma": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gamma", + "operationId": "workbooks.workbook.functions.gamma", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gamma_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gamma_Dist", + "operationId": "workbooks.workbook.functions.gamma_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "beta": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gamma_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gamma_Inv", + "operationId": "workbooks.workbook.functions.gamma_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "beta": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gammaLn": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gammaLn", + "operationId": "workbooks.workbook.functions.gammaLn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gammaLn_Precise": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gammaLn_Precise", + "operationId": "workbooks.workbook.functions.gammaLn_Precise", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gauss": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gauss", + "operationId": "workbooks.workbook.functions.gauss", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/gcd": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action gcd", + "operationId": "workbooks.workbook.functions.gcd", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/geoMean": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action geoMean", + "operationId": "workbooks.workbook.functions.geoMean", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/geStep": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action geStep", + "operationId": "workbooks.workbook.functions.geStep", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "step": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/harMean": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action harMean", + "operationId": "workbooks.workbook.functions.harMean", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hex2Bin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hex2Bin", + "operationId": "workbooks.workbook.functions.hex2Bin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hex2Dec": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hex2Dec", + "operationId": "workbooks.workbook.functions.hex2Dec", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hex2Oct": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hex2Oct", + "operationId": "workbooks.workbook.functions.hex2Oct", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hlookup": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hlookup", + "operationId": "workbooks.workbook.functions.hlookup", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "lookupValue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "tableArray": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rowIndexNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rangeLookup": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hour": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hour", + "operationId": "workbooks.workbook.functions.hour", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hyperlink": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hyperlink", + "operationId": "workbooks.workbook.functions.hyperlink", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "linkLocation": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "friendlyName": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/hypGeom_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action hypGeom_Dist", + "operationId": "workbooks.workbook.functions.hypGeom_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sampleS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberSample": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "populationS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberPop": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/if": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action if", + "operationId": "workbooks.workbook.functions.if", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logicalTest": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "valueIfTrue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "valueIfFalse": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imAbs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imAbs", + "operationId": "workbooks.workbook.functions.imAbs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imaginary": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imaginary", + "operationId": "workbooks.workbook.functions.imaginary", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imArgument": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imArgument", + "operationId": "workbooks.workbook.functions.imArgument", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imConjugate": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imConjugate", + "operationId": "workbooks.workbook.functions.imConjugate", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imCos": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imCos", + "operationId": "workbooks.workbook.functions.imCos", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imCosh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imCosh", + "operationId": "workbooks.workbook.functions.imCosh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imCot": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imCot", + "operationId": "workbooks.workbook.functions.imCot", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imCsc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imCsc", + "operationId": "workbooks.workbook.functions.imCsc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imCsch": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imCsch", + "operationId": "workbooks.workbook.functions.imCsch", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imDiv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imDiv", + "operationId": "workbooks.workbook.functions.imDiv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "inumber2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imExp": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imExp", + "operationId": "workbooks.workbook.functions.imExp", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imLn": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imLn", + "operationId": "workbooks.workbook.functions.imLn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imLog10": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imLog10", + "operationId": "workbooks.workbook.functions.imLog10", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imLog2": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imLog2", + "operationId": "workbooks.workbook.functions.imLog2", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imPower": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imPower", + "operationId": "workbooks.workbook.functions.imPower", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imProduct": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imProduct", + "operationId": "workbooks.workbook.functions.imProduct", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imReal": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imReal", + "operationId": "workbooks.workbook.functions.imReal", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSec": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSec", + "operationId": "workbooks.workbook.functions.imSec", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSech": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSech", + "operationId": "workbooks.workbook.functions.imSech", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSin", + "operationId": "workbooks.workbook.functions.imSin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSinh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSinh", + "operationId": "workbooks.workbook.functions.imSinh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSqrt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSqrt", + "operationId": "workbooks.workbook.functions.imSqrt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSub": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSub", + "operationId": "workbooks.workbook.functions.imSub", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "inumber2": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imSum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imSum", + "operationId": "workbooks.workbook.functions.imSum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/imTan": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action imTan", + "operationId": "workbooks.workbook.functions.imTan", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "inumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/int": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action int", + "operationId": "workbooks.workbook.functions.int", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/intRate": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action intRate", + "operationId": "workbooks.workbook.functions.intRate", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "investment": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ipmt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ipmt", + "operationId": "workbooks.workbook.functions.ipmt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "per": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/irr": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action irr", + "operationId": "workbooks.workbook.functions.irr", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "guess": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isErr": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isErr", + "operationId": "workbooks.workbook.functions.isErr", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isError": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isError", + "operationId": "workbooks.workbook.functions.isError", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isEven": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isEven", + "operationId": "workbooks.workbook.functions.isEven", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isFormula": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isFormula", + "operationId": "workbooks.workbook.functions.isFormula", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "reference": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isLogical": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isLogical", + "operationId": "workbooks.workbook.functions.isLogical", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isNA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isNA", + "operationId": "workbooks.workbook.functions.isNA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isNonText": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isNonText", + "operationId": "workbooks.workbook.functions.isNonText", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isNumber": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isNumber", + "operationId": "workbooks.workbook.functions.isNumber", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/iso_Ceiling": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action iso_Ceiling", + "operationId": "workbooks.workbook.functions.iso_Ceiling", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isOdd": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isOdd", + "operationId": "workbooks.workbook.functions.isOdd", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isoWeekNum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isoWeekNum", + "operationId": "workbooks.workbook.functions.isoWeekNum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "date": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ispmt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ispmt", + "operationId": "workbooks.workbook.functions.ispmt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "per": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isref": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isref", + "operationId": "workbooks.workbook.functions.isref", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/isText": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action isText", + "operationId": "workbooks.workbook.functions.isText", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/kurt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action kurt", + "operationId": "workbooks.workbook.functions.kurt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/large": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action large", + "operationId": "workbooks.workbook.functions.large", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "k": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/lcm": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action lcm", + "operationId": "workbooks.workbook.functions.lcm", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/left": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action left", + "operationId": "workbooks.workbook.functions.left", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numChars": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/leftb": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action leftb", + "operationId": "workbooks.workbook.functions.leftb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numBytes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/len": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action len", + "operationId": "workbooks.workbook.functions.len", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/lenb": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action lenb", + "operationId": "workbooks.workbook.functions.lenb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ln": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ln", + "operationId": "workbooks.workbook.functions.ln", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/log": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action log", + "operationId": "workbooks.workbook.functions.log", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "base": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/log10": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action log10", + "operationId": "workbooks.workbook.functions.log10", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/logNorm_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action logNorm_Dist", + "operationId": "workbooks.workbook.functions.logNorm_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mean": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/logNorm_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action logNorm_Inv", + "operationId": "workbooks.workbook.functions.logNorm_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mean": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/lookup": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action lookup", + "operationId": "workbooks.workbook.functions.lookup", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "lookupValue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "lookupVector": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "resultVector": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/lower": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action lower", + "operationId": "workbooks.workbook.functions.lower", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/match": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action match", + "operationId": "workbooks.workbook.functions.match", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "lookupValue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "lookupArray": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "matchType": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/max": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action max", + "operationId": "workbooks.workbook.functions.max", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/maxA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action maxA", + "operationId": "workbooks.workbook.functions.maxA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/mduration": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action mduration", + "operationId": "workbooks.workbook.functions.mduration", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "coupon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yld": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/median": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action median", + "operationId": "workbooks.workbook.functions.median", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/mid": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action mid", + "operationId": "workbooks.workbook.functions.mid", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numChars": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/midb": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action midb", + "operationId": "workbooks.workbook.functions.midb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numBytes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/min": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action min", + "operationId": "workbooks.workbook.functions.min", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/minA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action minA", + "operationId": "workbooks.workbook.functions.minA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/minute": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action minute", + "operationId": "workbooks.workbook.functions.minute", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/mirr": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action mirr", + "operationId": "workbooks.workbook.functions.mirr", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "financeRate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "reinvestRate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/mod": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action mod", + "operationId": "workbooks.workbook.functions.mod", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "divisor": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/month": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action month", + "operationId": "workbooks.workbook.functions.month", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/mround": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action mround", + "operationId": "workbooks.workbook.functions.mround", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "multiple": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/multiNomial": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action multiNomial", + "operationId": "workbooks.workbook.functions.multiNomial", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/n": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action n", + "operationId": "workbooks.workbook.functions.n", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/na": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action na", + "operationId": "workbooks.workbook.functions.na", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/negBinom_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action negBinom_Dist", + "operationId": "workbooks.workbook.functions.negBinom_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "numberF": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "probabilityS": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/networkDays": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action networkDays", + "operationId": "workbooks.workbook.functions.networkDays", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "holidays": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/networkDays_Intl": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action networkDays_Intl", + "operationId": "workbooks.workbook.functions.networkDays_Intl", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "weekend": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "holidays": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/nominal": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action nominal", + "operationId": "workbooks.workbook.functions.nominal", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "effectRate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "npery": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/norm_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action norm_Dist", + "operationId": "workbooks.workbook.functions.norm_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mean": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/norm_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action norm_Inv", + "operationId": "workbooks.workbook.functions.norm_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mean": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/norm_S_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action norm_S_Dist", + "operationId": "workbooks.workbook.functions.norm_S_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "z": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/norm_S_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action norm_S_Inv", + "operationId": "workbooks.workbook.functions.norm_S_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/not": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action not", + "operationId": "workbooks.workbook.functions.not", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/now": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action now", + "operationId": "workbooks.workbook.functions.now", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/nper": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action nper", + "operationId": "workbooks.workbook.functions.nper", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pmt": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/npv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action npv", + "operationId": "workbooks.workbook.functions.npv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/numberValue": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action numberValue", + "operationId": "workbooks.workbook.functions.numberValue", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "decimalSeparator": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "groupSeparator": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oct2Bin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oct2Bin", + "operationId": "workbooks.workbook.functions.oct2Bin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oct2Dec": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oct2Dec", + "operationId": "workbooks.workbook.functions.oct2Dec", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oct2Hex": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oct2Hex", + "operationId": "workbooks.workbook.functions.oct2Hex", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "places": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/odd": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action odd", + "operationId": "workbooks.workbook.functions.odd", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oddFPrice": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oddFPrice", + "operationId": "workbooks.workbook.functions.oddFPrice", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "issue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "firstCoupon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yld": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oddFYield": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oddFYield", + "operationId": "workbooks.workbook.functions.oddFYield", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "issue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "firstCoupon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oddLPrice": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oddLPrice", + "operationId": "workbooks.workbook.functions.oddLPrice", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "lastInterest": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yld": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/oddLYield": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action oddLYield", + "operationId": "workbooks.workbook.functions.oddLYield", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "lastInterest": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/or": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action or", + "operationId": "workbooks.workbook.functions.or", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/pduration": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action pduration", + "operationId": "workbooks.workbook.functions.pduration", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/percentile_Exc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action percentile_Exc", + "operationId": "workbooks.workbook.functions.percentile_Exc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "k": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/percentile_Inc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action percentile_Inc", + "operationId": "workbooks.workbook.functions.percentile_Inc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "k": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/percentRank_Exc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action percentRank_Exc", + "operationId": "workbooks.workbook.functions.percentRank_Exc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/percentRank_Inc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action percentRank_Inc", + "operationId": "workbooks.workbook.functions.percentRank_Inc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "significance": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/permut": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action permut", + "operationId": "workbooks.workbook.functions.permut", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberChosen": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/permutationa": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action permutationa", + "operationId": "workbooks.workbook.functions.permutationa", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberChosen": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/phi": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action phi", + "operationId": "workbooks.workbook.functions.phi", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/pi": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action pi", + "operationId": "workbooks.workbook.functions.pi", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/pmt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action pmt", + "operationId": "workbooks.workbook.functions.pmt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/poisson_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action poisson_Dist", + "operationId": "workbooks.workbook.functions.poisson_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mean": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/power": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action power", + "operationId": "workbooks.workbook.functions.power", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "power": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/ppmt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action ppmt", + "operationId": "workbooks.workbook.functions.ppmt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "per": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/price": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action price", + "operationId": "workbooks.workbook.functions.price", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yld": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/priceDisc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action priceDisc", + "operationId": "workbooks.workbook.functions.priceDisc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "discount": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/priceMat": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action priceMat", + "operationId": "workbooks.workbook.functions.priceMat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "issue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "yld": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/product": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action product", + "operationId": "workbooks.workbook.functions.product", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/proper": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action proper", + "operationId": "workbooks.workbook.functions.proper", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/pv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action pv", + "operationId": "workbooks.workbook.functions.pv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pmt": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/quartile_Exc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action quartile_Exc", + "operationId": "workbooks.workbook.functions.quartile_Exc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "quart": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/quartile_Inc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action quartile_Inc", + "operationId": "workbooks.workbook.functions.quartile_Inc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "quart": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/quotient": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action quotient", + "operationId": "workbooks.workbook.functions.quotient", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "numerator": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "denominator": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/radians": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action radians", + "operationId": "workbooks.workbook.functions.radians", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "angle": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rand": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rand", + "operationId": "workbooks.workbook.functions.rand", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/randBetween": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action randBetween", + "operationId": "workbooks.workbook.functions.randBetween", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "bottom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "top": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rank_Avg": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rank_Avg", + "operationId": "workbooks.workbook.functions.rank_Avg", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "ref": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "order": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rank_Eq": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rank_Eq", + "operationId": "workbooks.workbook.functions.rank_Eq", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "ref": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "order": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rate": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rate", + "operationId": "workbooks.workbook.functions.rate", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pmt": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "guess": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/received": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action received", + "operationId": "workbooks.workbook.functions.received", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "investment": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "discount": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/replace": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action replace", + "operationId": "workbooks.workbook.functions.replace", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "oldText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numChars": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "newText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/replaceB": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action replaceB", + "operationId": "workbooks.workbook.functions.replaceB", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "oldText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numBytes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "newText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rept": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rept", + "operationId": "workbooks.workbook.functions.rept", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numberTimes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/right": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action right", + "operationId": "workbooks.workbook.functions.right", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numChars": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rightb": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rightb", + "operationId": "workbooks.workbook.functions.rightb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numBytes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/roman": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action roman", + "operationId": "workbooks.workbook.functions.roman", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "form": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/round": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action round", + "operationId": "workbooks.workbook.functions.round", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numDigits": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/roundDown": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action roundDown", + "operationId": "workbooks.workbook.functions.roundDown", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numDigits": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/roundUp": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action roundUp", + "operationId": "workbooks.workbook.functions.roundUp", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numDigits": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rows": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rows", + "operationId": "workbooks.workbook.functions.rows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/rri": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action rri", + "operationId": "workbooks.workbook.functions.rri", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "nper": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "fv": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sec": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sec", + "operationId": "workbooks.workbook.functions.sec", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sech": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sech", + "operationId": "workbooks.workbook.functions.sech", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/second": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action second", + "operationId": "workbooks.workbook.functions.second", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/seriesSum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action seriesSum", + "operationId": "workbooks.workbook.functions.seriesSum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "n": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "m": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "coefficients": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sheet": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sheet", + "operationId": "workbooks.workbook.functions.sheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sheets": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sheets", + "operationId": "workbooks.workbook.functions.sheets", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "reference": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sign": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sign", + "operationId": "workbooks.workbook.functions.sign", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sin": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sin", + "operationId": "workbooks.workbook.functions.sin", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sinh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sinh", + "operationId": "workbooks.workbook.functions.sinh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/skew": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action skew", + "operationId": "workbooks.workbook.functions.skew", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/skew_p": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action skew_p", + "operationId": "workbooks.workbook.functions.skew_p", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sln": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sln", + "operationId": "workbooks.workbook.functions.sln", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "life": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/small": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action small", + "operationId": "workbooks.workbook.functions.small", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "k": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sqrt": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sqrt", + "operationId": "workbooks.workbook.functions.sqrt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sqrtPi": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sqrtPi", + "operationId": "workbooks.workbook.functions.sqrtPi", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/standardize": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action standardize", + "operationId": "workbooks.workbook.functions.standardize", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "mean": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "standardDev": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/stDev_P": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action stDev_P", + "operationId": "workbooks.workbook.functions.stDev_P", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/stDev_S": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action stDev_S", + "operationId": "workbooks.workbook.functions.stDev_S", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/stDevA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action stDevA", + "operationId": "workbooks.workbook.functions.stDevA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/stDevPA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action stDevPA", + "operationId": "workbooks.workbook.functions.stDevPA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/substitute": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action substitute", + "operationId": "workbooks.workbook.functions.substitute", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "oldText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "newText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "instanceNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/subtotal": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action subtotal", + "operationId": "workbooks.workbook.functions.subtotal", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "functionNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sum", + "operationId": "workbooks.workbook.functions.sum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sumIf": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sumIf", + "operationId": "workbooks.workbook.functions.sumIf", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "range": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "sumRange": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sumIfs": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sumIfs", + "operationId": "workbooks.workbook.functions.sumIfs", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sumRange": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/sumSq": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action sumSq", + "operationId": "workbooks.workbook.functions.sumSq", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/syd": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action syd", + "operationId": "workbooks.workbook.functions.syd", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "life": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "per": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/t": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action t", + "operationId": "workbooks.workbook.functions.t", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/t_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action t_Dist", + "operationId": "workbooks.workbook.functions.t_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/t_Dist_2T": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action t_Dist_2T", + "operationId": "workbooks.workbook.functions.t_Dist_2T", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/t_Dist_RT": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action t_Dist_RT", + "operationId": "workbooks.workbook.functions.t_Dist_RT", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/t_Inv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action t_Inv", + "operationId": "workbooks.workbook.functions.t_Inv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/t_Inv_2T": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action t_Inv_2T", + "operationId": "workbooks.workbook.functions.t_Inv_2T", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "probability": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "degFreedom": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/tan": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action tan", + "operationId": "workbooks.workbook.functions.tan", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/tanh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action tanh", + "operationId": "workbooks.workbook.functions.tanh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/tbillEq": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action tbillEq", + "operationId": "workbooks.workbook.functions.tbillEq", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "discount": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/tbillPrice": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action tbillPrice", + "operationId": "workbooks.workbook.functions.tbillPrice", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "discount": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/tbillYield": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action tbillYield", + "operationId": "workbooks.workbook.functions.tbillYield", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/text": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action text", + "operationId": "workbooks.workbook.functions.text", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "formatText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/time": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action time", + "operationId": "workbooks.workbook.functions.time", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "hour": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "minute": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "second": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/timevalue": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action timevalue", + "operationId": "workbooks.workbook.functions.timevalue", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timeText": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/today": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action today", + "operationId": "workbooks.workbook.functions.today", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/trim": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action trim", + "operationId": "workbooks.workbook.functions.trim", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/trimMean": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action trimMean", + "operationId": "workbooks.workbook.functions.trimMean", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "percent": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/true": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action true", + "operationId": "workbooks.workbook.functions.true", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/trunc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action trunc", + "operationId": "workbooks.workbook.functions.trunc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "numDigits": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/type": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action type", + "operationId": "workbooks.workbook.functions.type", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/unichar": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action unichar", + "operationId": "workbooks.workbook.functions.unichar", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/unicode": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action unicode", + "operationId": "workbooks.workbook.functions.unicode", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/upper": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action upper", + "operationId": "workbooks.workbook.functions.upper", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/usdollar": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action usdollar", + "operationId": "workbooks.workbook.functions.usdollar", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "decimals": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/value": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action value", + "operationId": "workbooks.workbook.functions.value", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/var_P": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action var_P", + "operationId": "workbooks.workbook.functions.var_P", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/var_S": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action var_S", + "operationId": "workbooks.workbook.functions.var_S", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/varA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action varA", + "operationId": "workbooks.workbook.functions.varA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/varPA": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action varPA", + "operationId": "workbooks.workbook.functions.varPA", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/vdb": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action vdb", + "operationId": "workbooks.workbook.functions.vdb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "cost": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "salvage": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "life": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "startPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endPeriod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "factor": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "noSwitch": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/vlookup": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action vlookup", + "operationId": "workbooks.workbook.functions.vlookup", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "lookupValue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "tableArray": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "colIndexNum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rangeLookup": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/weekday": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action weekday", + "operationId": "workbooks.workbook.functions.weekday", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "returnType": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/weekNum": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action weekNum", + "operationId": "workbooks.workbook.functions.weekNum", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "returnType": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/weibull_Dist": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action weibull_Dist", + "operationId": "workbooks.workbook.functions.weibull_Dist", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "alpha": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "beta": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "cumulative": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/workDay": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action workDay", + "operationId": "workbooks.workbook.functions.workDay", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "days": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "holidays": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/workDay_Intl": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action workDay_Intl", + "operationId": "workbooks.workbook.functions.workDay_Intl", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "days": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "weekend": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "holidays": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/xirr": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action xirr", + "operationId": "workbooks.workbook.functions.xirr", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "dates": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "guess": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/xnpv": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action xnpv", + "operationId": "workbooks.workbook.functions.xnpv", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "dates": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/xor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action xor", + "operationId": "workbooks.workbook.functions.xor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/year": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action year", + "operationId": "workbooks.workbook.functions.year", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "serialNumber": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/yearFrac": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action yearFrac", + "operationId": "workbooks.workbook.functions.yearFrac", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "startDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "endDate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/yield": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action yield", + "operationId": "workbooks.workbook.functions.yield", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "frequency": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/yieldDisc": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action yieldDisc", + "operationId": "workbooks.workbook.functions.yieldDisc", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "redemption": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/yieldMat": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action yieldMat", + "operationId": "workbooks.workbook.functions.yieldMat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "settlement": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maturity": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "issue": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rate": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "pr": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "basis": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/functions/z_Test": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action z_Test", + "operationId": "workbooks.workbook.functions.z_Test", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "array": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "x": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "sigma": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctionResult" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/closeSession": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Close an existing workbook session.", + "operationId": "closeSession", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/createSession": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Create a new workbook session.", + "operationId": "createSession", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "title": "PersistChanges", + "type": "object", + "properties": { + "persistChanges": { + "type": "boolean", + "default": false + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SessionInfo", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/processQuery": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action processQuery", + "operationId": "workbooks.workbook.processQuery", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "input": { + "type": "string", + "format": "base64url", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "format": "base64url", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/workbooks/{workbook-id}/workbook/refreshSession": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Refreshes an existing workbook session.", + "operationId": "refreshSession", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + } + }, + "/me/drive/items/{workbook-id}/workbook/names": { + "get": { + "tags": [ + "workbooks.workbook.workbookNamedItem", + "workbook" + ], + "summary": "Get names from workbooks.", + "operationId": "listWorkbookNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "comment", + "comment desc", + "name", + "name desc", + "scope", + "scope desc", + "type", + "type desc", + "value", + "value desc", + "visible", + "visible desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItems" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.workbookNamedItem" + ], + "summary": "Create new navigation property to names for workbooks", + "operationId": "workbooks.workbook.CreateNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}": { + "get": { + "tags": [ + "workbooks.workbook.workbookNamedItem", + "workbook" + ], + "summary": "Get names from workbooks.", + "operationId": "getWorkbookNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.workbookNamedItem", + "workbook" + ], + "summary": "Update the navigation property names in workbooks.", + "operationId": "updateWorkbookNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.workbookNamedItem", + "workbook" + ], + "summary": "Delete navigation property names for workbooks.", + "operationId": "deleteWorkbookNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.names.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.names.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.names.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Gets charts from workbooks.", + "operationId": "listWorkbookNamedItemCharts", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "height", + "height desc", + "left", + "left desc", + "name", + "name desc", + "top", + "top desc", + "width", + "width desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "left", + "name", + "top", + "width", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Charts" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Create new navigation property to charts for workbooks", + "operationId": "workbooks.workbook.names.worksheet.CreateCharts", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get chart from workbooks.", + "operationId": "getWorkbookNamedItemWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "left", + "name", + "top", + "width", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property charts in workbooks.", + "operationId": "updateWorkbookNamedItemWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property charts for workbooks.", + "operationId": "deleteWorkbookNamedItemWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get axes from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "categoryAxis", + "seriesAxis", + "valueAxis" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "categoryAxis", + "seriesAxis", + "valueAxis" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxes" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property axes in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxes" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property axes for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get categoryAxis from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.GetCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property categoryAxis in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.UpdateCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property categoryAxis for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.DeleteCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.categoryAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get seriesAxis from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.GetSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property seriesAxis in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.UpdateSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property seriesAxis for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.DeleteSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.seriesAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get valueAxis from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.GetValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property valueAxis in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.UpdateValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property valueAxis for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.DeleteValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.axes.valueAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get dataLabels from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "position", + "separator", + "showBubbleSize", + "showCategoryName", + "showLegendKey", + "showPercentage", + "showSeriesName", + "showValue", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabels" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property dataLabels in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabels" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property dataLabels for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.dataLabels.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAreaFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAreaFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.names.worksheet.charts.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get legend from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overlay", + "position", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegend" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property legend in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegend" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property legend for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegendFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegendFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.legend.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.names.worksheet.charts.image-8f13", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.names.worksheet.charts.image-72bb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "height", + "in": "path", + "description": "Usage: height={height}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "fittingMode", + "in": "path", + "description": "Usage: fittingMode={fittingMode}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.names.worksheet.charts.image-664c", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "height", + "in": "path", + "description": "Usage: height={height}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.names.worksheet.charts.image-9795", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/setData": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Resets the source data for the chart.", + "operationId": "setWorkbookNamedItemWorksheetChartData", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SetData" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/setData", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/setData" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/setPosition": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Positions the chart relative to cells on the worksheet.", + "operationId": "setWorkbookNamedItemWorksheetChartPosition", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Position" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/setPosition", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/setPosition" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get series from workbooks.", + "operationId": "listWorkbookNamedItemWorksheetChartSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "format", + "points" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "points" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesCollection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet", + "workbook" + ], + "summary": "Create new navigation property to series for workbooks.", + "operationId": "createWorkbookNamedItemWorksheetChartSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get series from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "format", + "points" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "points" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property series in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property series for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.series.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get points from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.ListPoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookChartPoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Create new navigation property to points for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.CreatePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get points from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.GetPoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property points in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.UpdatePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property points for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.DeletePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPointFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPointFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.names.worksheet.charts.series.points.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartPoint" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.names.worksheet.charts.series.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.names.worksheet.charts.series.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartSeries" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overlay", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.names.worksheet.charts.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.names.worksheet.charts.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.charts.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.charts.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.charts.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.charts.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Creates a new chart.", + "operationId": "addWorkbookNamedItemWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewChart" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.names.worksheet.charts.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/item(name={name})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function item", + "operationId": "workbooks.workbook.names.worksheet.charts.item", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "name", + "in": "path", + "description": "Usage: name={name}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Chart" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/item(name={name})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/item(name={name})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.names.worksheet.charts.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Chart" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Gets the range containing the single cell based on row and column numbers.", + "operationId": "getWorkbookNamedItemWorksheetCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get names from workbooks", + "operationId": "workbooks.workbook.names.worksheet.ListNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "comment", + "comment desc", + "name", + "name desc", + "scope", + "scope desc", + "type", + "type desc", + "value", + "value desc", + "visible", + "visible desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookNamedItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Create new navigation property to names for workbooks", + "operationId": "workbooks.workbook.names.worksheet.CreateNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get names from workbooks", + "operationId": "workbooks.workbook.names.worksheet.GetNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookNamedItem-id1", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property names in workbooks", + "operationId": "workbooks.workbook.names.worksheet.UpdateNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookNamedItem-id1", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property names for workbooks", + "operationId": "workbooks.workbook.names.worksheet.DeleteNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookNamedItem-id1", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.names.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookNamedItem-id1", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Adds a new name to the collection of the given scope using the user's locale for the formula.", + "operationId": "addWorkbookNamedItemWorksheetName", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewNamedItem" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/addFormulaLocal": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Creates new formula local.", + "operationId": "addWorkbookNamedItemWorksheetFormulaLocal", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Formula" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/addFormulaLocal" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get pivotTables from workbooks", + "operationId": "workbooks.workbook.names.worksheet.ListPivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookPivotTable", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Create new navigation property to pivotTables for workbooks", + "operationId": "workbooks.workbook.names.worksheet.CreatePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get pivotTables from workbooks", + "operationId": "workbooks.workbook.names.worksheet.GetPivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property pivotTables in workbooks", + "operationId": "workbooks.workbook.names.worksheet.UpdatePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property pivotTables for workbooks", + "operationId": "workbooks.workbook.names.worksheet.DeletePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/refresh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action refresh", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.refresh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/refresh", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/refresh" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/refreshAll": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action refreshAll", + "operationId": "workbooks.workbook.names.worksheet.pivotTables.refreshAll", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/refreshAll", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/refreshAll" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get protection from workbooks", + "operationId": "workbooks.workbook.names.worksheet.GetProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "options", + "protected" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/WorksheetProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property protection in workbooks", + "operationId": "workbooks.workbook.names.worksheet.UpdateProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/WorksheetProtection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property protection for workbooks", + "operationId": "workbooks.workbook.names.worksheet.DeleteProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection/protect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action protect", + "operationId": "workbooks.workbook.names.worksheet.protection.protect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "options": { + "anyOf": [ + { + "$ref": "#/components/schemas/WorksheetProtectionOptions" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection/protect", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection/protect" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection/unprotect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action unprotect", + "operationId": "workbooks.workbook.names.worksheet.protection.unprotect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection/unprotect", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection/unprotect" + ] + }, + "/me/drive/items/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get tables from workbooks.", + "operationId": "listWorkbookNamedItemTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "highlightFirstColumn", + "highlightFirstColumn desc", + "highlightLastColumn", + "highlightLastColumn desc", + "name", + "name desc", + "showBandedColumns", + "showBandedColumns desc", + "showBandedRows", + "showBandedRows desc", + "showFilterButton", + "showFilterButton desc", + "showHeaders", + "showHeaders desc", + "showTotals", + "showTotals desc", + "style", + "style desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Tables" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Create new navigation property to tables for workbooks", + "operationId": "workbooks.workbook.names.worksheet.CreateTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get tables from workbooks.", + "operationId": "getWorkbookNamedItemTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property tables in workbooks.", + "operationId": "updateWorkbookNamedItemTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property tables for workbooks.", + "operationId": "deleteWorkbookNamedItemTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get columns from workbooks.", + "operationId": "listWorkbookNamedItemWorksheetTableColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "index", + "index desc", + "name", + "name desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "name", + "values", + "filter" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "filter" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Columns" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet", + "workbook" + ], + "summary": "Create new navigation property to columns for workbooks.", + "operationId": "createWorkbookNamedItemWorksheetTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get columns from workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.GetColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "name", + "values", + "filter" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "filter" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property columns in workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.UpdateColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property columns for workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.DeleteColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get filter from workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.GetFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "criteria" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Filter" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property filter in workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.UpdateFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Filter" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property filter for workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.DeleteFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action apply", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.apply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/FilterCriteria" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/apply" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyBottomItemsFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyBottomItemsFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyBottomPercentFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyBottomPercentFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "percent": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyCellColorFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyCellColorFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyCustomFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyCustomFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria1": { + "type": "string", + "nullable": true + }, + "criteria2": { + "type": "string", + "nullable": true + }, + "oper": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyDynamicFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyDynamicFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyFontColorFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyFontColorFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyIconFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyIconFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "icon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Icon" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyTopItemsFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyTopItemsFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyTopPercentFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyTopPercentFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "percent": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyValuesFilter", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.applyValuesFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.filter.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action add", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.add", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Column" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.names.worksheet.tables.columns.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Column" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/clearFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clearFilters", + "operationId": "workbooks.workbook.names.worksheet.tables.clearFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/clearFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/clearFilters", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/clearFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/convertToRange": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action convertToRange", + "operationId": "workbooks.workbook.names.worksheet.tables.convertToRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/convertToRange", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/convertToRange", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/convertToRange" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.names.worksheet.tables.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.names.worksheet.tables.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Retrieves the properties and relationships of range.", + "operationId": "getWorkbookNamedItemWorksheetTableRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/reapplyFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapplyFilters", + "operationId": "workbooks.workbook.names.worksheet.tables.reapplyFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/reapplyFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.names.worksheet.tables.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get rows from workbooks.", + "operationId": "listWorkbookNamedItemWorksheetTableRows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "index", + "index desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Rows" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Create new navigation property to rows for workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.CreateRows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get row from workbooks.", + "operationId": "getWorkbookNamedItemWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property rows in workbooks.", + "operationId": "updateWorkbookNamedItemWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property rows for workbooks.", + "operationId": "deleteWorkbookNamedItemWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.tables.rows.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Adds rows to the end of the table.", + "operationId": "addWorkbookNamedItemWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewRow" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.names.worksheet.tables.rows.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.names.worksheet.tables.rows.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Row" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get sort from workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.GetSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fields", + "matchCase", + "method" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TableSort" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property sort in workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.UpdateSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TableSort" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property sort for workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.DeleteSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/apply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action apply", + "operationId": "workbooks.workbook.names.worksheet.tables.sort.apply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/apply" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.names.worksheet.tables.sort.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/reapply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapply", + "operationId": "workbooks.workbook.names.worksheet.tables.sort.reapply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/reapply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/reapply" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.names.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.names.worksheet.tables.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Gets the range object containing the single cell based on row and column numbers.", + "operationId": "getWorkbookNamedItemWorksheetTableCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.tables.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.names.worksheet.tables.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.tables.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.names.worksheet.tables.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Create a new table.", + "operationId": "addWorkbookNamedItemWorksheetTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewTable" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.names.worksheet.tables.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.names.worksheet.tables.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Table" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/names/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Adds a new name to the collection of the given scope using the user's locale for the formula.", + "operationId": "addWorkbookName", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewNamedItem" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/names/addFormulaLocal": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates new formula local.", + "operationId": "addWorkbookNameFormulaLocal", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Formula" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/addFormulaLocal" + ] + }, + "/workbooks/{workbook-id}/workbook/tables": { + "get": { + "tags": [ + "workbooks.workbook.workbookTable", + "workbook" + ], + "summary": "Gets tables from workbooks.", + "operationId": "listWorkbookTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "highlightFirstColumn", + "highlightFirstColumn desc", + "highlightLastColumn", + "highlightLastColumn desc", + "name", + "name desc", + "showBandedColumns", + "showBandedColumns desc", + "showBandedRows", + "showBandedRows desc", + "showFilterButton", + "showFilterButton desc", + "showHeaders", + "showHeaders desc", + "showTotals", + "showTotals desc", + "style", + "style desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Tables" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.workbookTable" + ], + "summary": "Create new navigation property to tables for workbooks", + "operationId": "workbooks.workbook.CreateTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}": { + "get": { + "tags": [ + "workbooks.workbook.workbookTable", + "workbook" + ], + "summary": "Get tables from workbooks.", + "operationId": "getWorkbookTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.workbookTable", + "workbook" + ], + "summary": "Update the navigation property tables in workbooks", + "operationId": "updateWorkbookTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.workbookTable", + "workbook" + ], + "summary": "Delete navigation property tables for workbooks", + "operationId": "deleteWorkbookTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn", + "workbook" + ], + "summary": "Get columns from workbooks.", + "operationId": "listWorkbookTableColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "index", + "index desc", + "name", + "name desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "name", + "values", + "filter" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "filter" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Columns" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn", + "workbook" + ], + "summary": "Create new navigation property to columns for workbooks.", + "operationId": "createWorkbookTableColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn", + "workbook" + ], + "summary": "Get columns from workbooks.", + "operationId": "getWorkbookTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "name", + "values", + "filter" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "filter" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn", + "workbook" + ], + "summary": "Update the columns in workbooks.", + "operationId": "updateWorkbookTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn", + "workbook" + ], + "summary": "Delete columns for workbooks.", + "operationId": "deleteWorkbookTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn" + ], + "summary": "Get filter from workbooks", + "operationId": "workbooks.workbook.tables.columns.GetFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "criteria" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Filter" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn" + ], + "summary": "Update the navigation property filter in workbooks", + "operationId": "workbooks.workbook.tables.columns.UpdateFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Filter" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookTableColumn" + ], + "summary": "Delete navigation property filter for workbooks", + "operationId": "workbooks.workbook.tables.columns.DeleteFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action apply", + "operationId": "workbooks.workbook.tables.columns.filter.apply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/FilterCriteria" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/apply" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyBottomItemsFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyBottomItemsFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyBottomPercentFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyBottomPercentFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "percent": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyCellColorFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyCellColorFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyCustomFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyCustomFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria1": { + "type": "string", + "nullable": true + }, + "criteria2": { + "type": "string", + "nullable": true + }, + "oper": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyDynamicFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyDynamicFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyFontColorFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyFontColorFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyIconFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyIconFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "icon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Icon" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyTopItemsFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyTopItemsFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyTopPercentFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyTopPercentFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "percent": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyValuesFilter", + "operationId": "workbooks.workbook.tables.columns.filter.applyValuesFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.columns.filter.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.tables.columns.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.tables.columns.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Get the range object associated with the entire table.", + "operationId": "getWorkbookTableRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.tables.columns.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action add", + "operationId": "workbooks.workbook.tables.columns.add", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Column" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.columns.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.columns.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Column" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/clearFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clearFilters", + "operationId": "workbooks.workbook.tables.clearFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/clearFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/clearFilters", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/clearFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/convertToRange": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action convertToRange", + "operationId": "workbooks.workbook.tables.convertToRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/convertToRange", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/convertToRange", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/convertToRange" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.tables.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.tables.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/reapplyFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapplyFilters", + "operationId": "workbooks.workbook.tables.reapplyFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/reapplyFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.tables.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookTableRow", + "workbook" + ], + "summary": "Get rows from workbooks.", + "operationId": "listWorkbookTableRows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "index", + "index desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Rows" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookTableRow" + ], + "summary": "Create new navigation property to rows for workbooks", + "operationId": "workbooks.workbook.tables.CreateRows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookTableRow", + "workbook" + ], + "summary": "Get rows from workbooks.", + "operationId": "getWorkbookTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookTableRow", + "workbook" + ], + "summary": "Update the rows in workbooks.", + "operationId": "updateWorkbookTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookTableRow", + "workbook" + ], + "summary": "Delete rows for workbooks.", + "operationId": "deleteWorkbookTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + null, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.rows.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Adds rows to the end of the table.", + "operationId": "addWorkbookTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewRow" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.rows.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.rows.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Row" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookTableSort" + ], + "summary": "Get sort from workbooks", + "operationId": "workbooks.workbook.tables.GetSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fields", + "matchCase", + "method" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TableSort" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookTableSort" + ], + "summary": "Update the navigation property sort in workbooks", + "operationId": "workbooks.workbook.tables.UpdateSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TableSort" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookTableSort" + ], + "summary": "Delete navigation property sort for workbooks", + "operationId": "workbooks.workbook.tables.DeleteSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/apply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action apply", + "operationId": "workbooks.workbook.tables.sort.apply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/apply" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.sort.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/reapply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapply", + "operationId": "workbooks.workbook.tables.sort.reapply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/reapply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/reapply" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.tables.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.tables.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.tables.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet", + "workbook" + ], + "summary": "Get charts from workbooks.", + "operationId": "listWorkbookTableCharts", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "height", + "height desc", + "left", + "left desc", + "name", + "name desc", + "top", + "top desc", + "width", + "width desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "left", + "name", + "top", + "width", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Charts" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Create new navigation property to charts for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.CreateCharts", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get chart from workbooks.", + "operationId": "getWorkbookTableWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "left", + "name", + "top", + "width", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property charts in workbooks.", + "operationId": "updateWorkbookTableWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete charts for workbooks.", + "operationId": "deleteWorkbookTableWorksheetWChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get axes from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "categoryAxis", + "seriesAxis", + "valueAxis" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "categoryAxis", + "seriesAxis", + "valueAxis" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxes" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property axes in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxes" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property axes for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get categoryAxis from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.GetCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property categoryAxis in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.UpdateCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property categoryAxis for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.DeleteCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.categoryAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get seriesAxis from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.GetSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property seriesAxis in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.UpdateSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property seriesAxis for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.DeleteSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.seriesAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get valueAxis from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.GetValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property valueAxis in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.UpdateValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property valueAxis for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.DeleteValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.axes.valueAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get dataLabels from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "position", + "separator", + "showBubbleSize", + "showCategoryName", + "showLegendKey", + "showPercentage", + "showSeriesName", + "showValue", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabels" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property dataLabels in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabels" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property dataLabels for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.dataLabels.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAreaFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAreaFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get legend from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overlay", + "position", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegend" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property legend in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegend" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property legend for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegendFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegendFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.legend.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.tables.worksheet.charts.image-8f13", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.tables.worksheet.charts.image-72bb", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "height", + "in": "path", + "description": "Usage: height={height}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "fittingMode", + "in": "path", + "description": "Usage: fittingMode={fittingMode}", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.tables.worksheet.charts.image-664c", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "height", + "in": "path", + "description": "Usage: height={height}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function image", + "operationId": "workbooks.workbook.tables.worksheet.charts.image-9795", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "string", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/setData": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Resets the source data for the chart.", + "operationId": "setWorkbooktableWorksheetChartData", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SetData" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/setData", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/setData" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/setPosition": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Positions the chart relative to cells on the worksheet.", + "operationId": "setWorkbookTableWorksheeetChartPosition", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Position" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/setPosition", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/setPosition" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet", + "workbook" + ], + "summary": "Get series from workbooks.", + "operationId": "listWorkbookTableWorksheetChartSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "format", + "points" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "points" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesCollection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Create new navigation property to series for workbooks.", + "operationId": "createWorkbookTableWorksheetChartSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get series from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "format", + "points" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "points" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property series in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property series for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get points from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.ListPoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookChartPoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Create new navigation property to points for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.CreatePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get points from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.GetPoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property points in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.UpdatePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property points for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.DeletePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPointFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPointFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.points.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartPoint" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.worksheet.charts.series.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartSeries" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overlay", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.charts.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.tables.worksheet.charts.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.charts.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.charts.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.charts.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.charts.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates a new chart.", + "operationId": "addWorkbookTableWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewChart" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.worksheet.charts.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/item(name={name})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function item", + "operationId": "workbooks.workbook.tables.worksheet.charts.item", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "name", + "in": "path", + "description": "Usage: name={name}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Chart" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/item(name={name})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/item(name={name})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.worksheet.charts.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Chart" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Gets the range containing the single cell based on row and column numbers.", + "operationId": "getWorkbookTableWorksheetCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get names from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.ListNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "comment", + "comment desc", + "name", + "name desc", + "scope", + "scope desc", + "type", + "type desc", + "value", + "value desc", + "visible", + "visible desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookNamedItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Create new navigation property to names for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.CreateNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get names from workbooks.", + "operationId": "getWorkbookTableWorksheetNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the names in workbooks.", + "operationId": "updateWorkbookTableWorksheetNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete property names for workbooks.", + "operationId": "deleteWorkbookTableWorksheetNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.names.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.names.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.names.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.names.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.tables.worksheet.names.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.names.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.names.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.names.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.names.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Adds a new name to the collection of the given scope using the user's locale for the formula.", + "operationId": "addWorkbookTableWorksheetName", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewNamedItem" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/addFormulaLocal": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates new formula local.", + "operationId": "addWorkbookTableWorksheetFormula", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Formula" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/addFormulaLocal" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get pivotTables from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.ListPivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookPivotTable", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Create new navigation property to pivotTables for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.CreatePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get pivotTables from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.GetPivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property pivotTables in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.UpdatePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property pivotTables for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.DeletePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/refresh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action refresh", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.refresh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/refresh", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/refresh" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/refreshAll": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action refreshAll", + "operationId": "workbooks.workbook.tables.worksheet.pivotTables.refreshAll", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/refreshAll", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/refreshAll" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get protection from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.GetProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "options", + "protected" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/WorksheetProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property protection in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.UpdateProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/WorksheetProtection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property protection for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.DeleteProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection/protect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action protect", + "operationId": "workbooks.workbook.tables.worksheet.protection.protect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "options": { + "anyOf": [ + { + "$ref": "#/components/schemas/WorksheetProtectionOptions" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection/protect", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection/protect" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection/unprotect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action unprotect", + "operationId": "workbooks.workbook.tables.worksheet.protection.unprotect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection/unprotect", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection/unprotect" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get tables from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.ListTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "highlightFirstColumn", + "highlightFirstColumn desc", + "highlightLastColumn", + "highlightLastColumn desc", + "name", + "name desc", + "showBandedColumns", + "showBandedColumns desc", + "showBandedRows", + "showBandedRows desc", + "showFilterButton", + "showFilterButton desc", + "showHeaders", + "showHeaders desc", + "showTotals", + "showTotals desc", + "style", + "style desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookTable", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Table" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Create new navigation property to tables for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.CreateTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}": { + "get": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Get tables from workbooks", + "operationId": "workbooks.workbook.tables.worksheet.GetTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Update the navigation property tables in workbooks", + "operationId": "workbooks.workbook.tables.worksheet.UpdateTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.tables.workbookWorksheet" + ], + "summary": "Delete navigation property tables for workbooks", + "operationId": "workbooks.workbook.tables.worksheet.DeleteTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/clearFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clearFilters", + "operationId": "workbooks.workbook.tables.worksheet.tables.clearFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/clearFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/clearFilters", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/clearFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/convertToRange": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action convertToRange", + "operationId": "workbooks.workbook.tables.worksheet.tables.convertToRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/convertToRange", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/convertToRange", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/convertToRange" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.tables.worksheet.tables.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.tables.worksheet.tables.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.tables.worksheet.tables.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/reapplyFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapplyFilters", + "operationId": "workbooks.workbook.tables.worksheet.tables.reapplyFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/reapplyFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.tables.worksheet.tables.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTable-id1", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates a new table.", + "operationId": "addWorkbookTableWorksheetTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewTable" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.worksheet.tables.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.worksheet.tables.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Table" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/tables/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates a new table.", + "operationId": "addWorkbookTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewTable" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.tables.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.tables.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Table" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets": { + "get": { + "tags": [ + "workbooks.workbook.workbookWorksheet", + "workbook" + ], + "summary": "Get worksheets from workbooks.", + "operationId": "listWorksheets", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc", + "position", + "position desc", + "visibility", + "visibility desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Worksheets", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.workbookWorksheet", + "workbook" + ], + "summary": "Creates new worksheet for workbooks.", + "operationId": "createWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}": { + "get": { + "tags": [ + "workbooks.workbook.workbookWorksheet", + "workbook" + ], + "summary": "Get worksheets from workbooks.", + "operationId": "getWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.workbookWorksheet", + "workbook" + ], + "summary": "Update the worksheet in workbooks.", + "operationId": "updateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "A collection of chart", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.workbookWorksheet", + "workbook" + ], + "summary": "Delete worksheet for workbooks.", + "operationId": "deleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + } + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart", + "workbook" + ], + "summary": "Get charts from workbooks.", + "operationId": "listWorksheetCharts", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "height", + "height desc", + "left", + "left desc", + "name", + "name desc", + "top", + "top desc", + "width", + "width desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "left", + "name", + "top", + "width", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Charts" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Create new navigation property to charts for workbooks.", + "operationId": "workbooks.workbook.worksheets.CreateCharts", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart", + "workbook" + ], + "summary": "Get chart from workbooks.", + "operationId": "getWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "height", + "left", + "name", + "top", + "width", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "axes", + "dataLabels", + "format", + "legend", + "series", + "title", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart", + "workbook" + ], + "summary": "Update the chart in workbooks", + "operationId": "updateWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart", + "workbook" + ], + "summary": "Delete chart for workbooks", + "operationId": "deleteWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get axes from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "categoryAxis", + "seriesAxis", + "valueAxis" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "categoryAxis", + "seriesAxis", + "valueAxis" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxes" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property axes in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxes" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property axes for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteAxes", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get categoryAxis from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.GetCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property categoryAxis in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.UpdateCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property categoryAxis for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.DeleteCategoryAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.categoryAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get seriesAxis from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.GetSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property seriesAxis in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.UpdateSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property seriesAxis for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.DeleteSeriesAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.seriesAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get valueAxis from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.GetValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "majorUnit", + "maximum", + "minimum", + "minorUnit", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "majorGridlines", + "minorGridlines", + "title" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property valueAxis in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.UpdateValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxis" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property valueAxis for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.DeleteValueAxis", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get majorGridlines from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.GetMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property majorGridlines in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.UpdateMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property majorGridlines for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.DeleteMajorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.majorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get minorGridlines from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.GetMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property minorGridlines in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.UpdateMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlines" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property minorGridlines for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.DeleteMinorGridlines", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.minorGridlines.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.axes.valueAxis.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/title/format/font", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get dataLabels from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "position", + "separator", + "showBubbleSize", + "showCategoryName", + "showLegendKey", + "showPercentage", + "showSeriesName", + "showValue", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabels" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property dataLabels in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabels" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property dataLabels for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteDataLabels", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.dataLabels.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAreaFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartAreaFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.worksheets.charts.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get legend from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overlay", + "position", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegend" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property legend in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegend" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property legend for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteLegend", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegendFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLegendFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.legend.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.", + "operationId": "getWorksheetChartImage", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Image" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.", + "operationId": "getWorksheetChartImageWithWidthHeightFittingMode", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "height", + "in": "path", + "description": "Usage: height={height}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "fittingMode", + "in": "path", + "description": "Usage: fittingMode={fittingMode}", + "required": true, + "schema": { + "type": "string" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Image" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.", + "operationId": "getWorksheetChartImageWithWidthHeight", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "height", + "in": "path", + "description": "Usage: height={height}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Image" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.", + "operationId": "getWorksheetChartImageWithWidth", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "width", + "in": "path", + "description": "Usage: width={width}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Image" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width},height={height})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/image(width={width})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height},fittingMode={fittingMode})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/image(width={width},height={height})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/setData": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Resets the source data for the chart.", + "operationId": "setWorksheetChartData", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SetData" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/setData", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/setData" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/setPosition": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Positions the chart relative to cells on the worksheet.", + "operationId": "setWorksheetChartPosition", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Position" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/setPosition", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/setPosition" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart", + "workbook" + ], + "summary": "Get series from workbooks.", + "operationId": "listWorksheetChartSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "format", + "points" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "points" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesCollection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart", + "workbook" + ], + "summary": "Create new navigation property to series for workbooks.", + "operationId": "createWorksheetChartSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get series from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "format", + "points" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format", + "points" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property series in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeries" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property series for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteSeries", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "line" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "line" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.series.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.worksheets.charts.series.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get line from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.format.GetLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "color" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property line in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.format.UpdateLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartLineFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property line for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.format.DeleteLine", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.series.format.line.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get points from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.ListPoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "value", + "value desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookChartPoint", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Create new navigation property to points for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.CreatePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get points from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.GetPoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "value", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property points in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.UpdatePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPoint" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property points for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.DeletePoints", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.points.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPointFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.points.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartPointFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.points.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.points.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.points.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.series.points.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.series.points.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.worksheets.charts.series.points.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "workbookChartPoint-id", + "in": "path", + "description": "key: id of workbookChartPoint", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartPoint" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.worksheets.charts.series.points.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.worksheets.charts.series.points.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "workbook-chart-series-id", + "in": "path", + "description": "key: id of workbookChartSeries", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChartSeries" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartPoint" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.worksheets.charts.series.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.worksheets.charts.series.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartSeries" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get title from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "overlay", + "text", + "visible", + "format" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "format" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitle" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property title in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitle" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property title for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteTitle", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get format from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.GetFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fill", + "font" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "fill", + "font" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitleFormat" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property format in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.UpdateFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartTitleFormat" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property format for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.DeleteFormat", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get fill from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.format.GetFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property fill in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.format.UpdateFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFill" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property fill for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.format.DeleteFill", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.charts.title.format.fill.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/setSolidColor": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action setSolidColor", + "operationId": "workbooks.workbook.worksheets.charts.title.format.fill.setSolidColor", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/setSolidColor", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/font": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get font from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.format.GetFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "bold", + "color", + "italic", + "name", + "size", + "underline" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property font in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.format.UpdateFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChartFont" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property font for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.title.format.DeleteFont", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/font", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/font" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.worksheets.charts.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.worksheets.charts.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookChart" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.worksheets.charts.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.worksheets.charts.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.charts.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.charts.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.charts.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.charts.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-chart-id", + "in": "path", + "description": "key: id of workbookChart", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookChart" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates a new chart.", + "operationId": "addWorksheetChart", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewChart" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.worksheets.charts.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/item(name={name})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function item", + "operationId": "workbooks.workbook.worksheets.charts.item", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "name", + "in": "path", + "description": "Usage: name={name}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Chart" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/item(name={name})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/item(name={name})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Gets a chart based on its position in the collection.", + "operationId": "getWorksheetChartItemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Chart", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Gets the range containing the single cell based on row and column numbers.", + "operationId": "getWorksheetCell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Retrieve the properties and relationships of range.", + "operationId": "getWorksheetRangeWithAddress", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem" + ], + "summary": "Get names from workbooks", + "operationId": "workbooks.workbook.worksheets.ListNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "comment", + "comment desc", + "name", + "name desc", + "scope", + "scope desc", + "type", + "type desc", + "value", + "value desc", + "visible", + "visible desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "Collection of workbookNamedItem", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem" + ], + "summary": "Create new navigation property to names for workbooks", + "operationId": "workbooks.workbook.worksheets.CreateNames", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem", + "workbook" + ], + "summary": "Get names from workbooks.", + "operationId": "getWorksheetNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "comment", + "name", + "scope", + "type", + "value", + "visible", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem", + "workbook" + ], + "summary": "Update the names in workbooks.", + "operationId": "updateWorksheetNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem", + "workbook" + ], + "summary": "Delete navigation property names for workbooks.", + "operationId": "deleteWorksheetNamedItem", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.names.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.worksheets.names.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.worksheets.names.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookNamedItem" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.worksheets.names.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.worksheets.names.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.names.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.names.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.names.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.names.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-named-item-id", + "in": "path", + "description": "key: id of workbookNamedItem", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookNamedItem" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Adds a new name to the collection of the given scope using the user's locale for the formula.", + "operationId": "addWorksheetName", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewNamedItem" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/addFormulaLocal": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Adds a new name to the collection of a given scope using the user’s locale for the formula.", + "operationId": "addWorksheetFormula", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Formula" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NamedItem", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/names/addFormulaLocal", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/addFormulaLocal" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable", + "workbook" + ], + "summary": "Get pivotTables from workbooks.", + "operationId": "listWorksheetPivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "name", + "name desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "title": "WorkbookPivotTables", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Create new navigation property to pivotTables for workbooks", + "operationId": "workbooks.workbook.worksheets.CreatePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Get pivotTables from workbooks", + "operationId": "workbooks.workbook.worksheets.GetPivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Update the navigation property pivotTables in workbooks", + "operationId": "workbooks.workbook.worksheets.UpdatePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PivotTable" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Delete navigation property pivotTables for workbooks", + "operationId": "workbooks.workbook.worksheets.DeletePivotTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/refresh": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action refresh", + "operationId": "workbooks.workbook.worksheets.pivotTables.refresh", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/refresh", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/refresh" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.worksheets.pivotTables.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.worksheets.pivotTables.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookPivotTable" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.worksheets.pivotTables.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.worksheets.pivotTables.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.pivotTables.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.pivotTables.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.pivotTables.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.pivotTables.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbookPivotTable-id", + "in": "path", + "description": "key: id of workbookPivotTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookPivotTable" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/refreshAll": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action refreshAll", + "operationId": "workbooks.workbook.worksheets.pivotTables.refreshAll", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/refreshAll", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/refreshAll" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookWorksheetProtection" + ], + "summary": "Get protection from workbooks", + "operationId": "workbooks.workbook.worksheets.GetProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "options", + "protected" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/WorksheetProtection" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookWorksheetProtection" + ], + "summary": "Update the navigation property protection in workbooks", + "operationId": "workbooks.workbook.worksheets.UpdateProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/WorksheetProtection" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookWorksheetProtection" + ], + "summary": "Delete navigation property protection for workbooks", + "operationId": "workbooks.workbook.worksheets.DeleteProtection", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection/protect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action protect", + "operationId": "workbooks.workbook.worksheets.protection.protect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "options": { + "anyOf": [ + { + "$ref": "#/components/schemas/WorksheetProtectionOptions" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection/protect", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection/protect" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/protection/unprotect": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action unprotect", + "operationId": "workbooks.workbook.worksheets.protection.unprotect", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/protection/unprotect", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/protection/unprotect" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Get tables from workbooks.", + "operationId": "listWorksheetTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "highlightFirstColumn", + "highlightFirstColumn desc", + "highlightLastColumn", + "highlightLastColumn desc", + "name", + "name desc", + "showBandedColumns", + "showBandedColumns desc", + "showBandedRows", + "showBandedRows desc", + "showFilterButton", + "showFilterButton desc", + "showHeaders", + "showHeaders desc", + "showTotals", + "showTotals desc", + "style", + "style desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Tables" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Create new navigation property to tables for workbooks", + "operationId": "workbooks.workbook.worksheets.CreateTables", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Get tables from workbooks.", + "operationId": "getWorksheetTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "highlightFirstColumn", + "highlightLastColumn", + "name", + "showBandedColumns", + "showBandedRows", + "showFilterButton", + "showHeaders", + "showTotals", + "style", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "columns", + "rows", + "sort", + "worksheet" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Updates the table in workbooks", + "operationId": "updateWorksheetTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Delete table for workbooks.", + "operationId": "deleteWorksheetTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Gets columns from workbooks.", + "operationId": "listWorksheetTableColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "index", + "index desc", + "name", + "name desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "name", + "values", + "filter" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "filter" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Columns" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Create new navigation property to columns for workbooks.", + "operationId": "createWorksheetTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Get column from workbooks.", + "operationId": "getWorksheetTableColumns", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "name", + "values", + "filter" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "filter" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Update the column in workbooks", + "operationId": "updateWorksheetTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Delete column for workbooks", + "operationId": "deleteWorksheetTableColumn", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Get filter from workbooks", + "operationId": "workbooks.workbook.worksheets.tables.columns.GetFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "criteria" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Filter" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Update the navigation property filter in workbooks", + "operationId": "workbooks.workbook.worksheets.tables.columns.UpdateFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Filter" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Delete navigation property filter for workbooks", + "operationId": "workbooks.workbook.worksheets.tables.columns.DeleteFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action apply", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.apply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/FilterCriteria" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/apply" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyBottomItemsFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyBottomItemsFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomItemsFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyBottomPercentFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyBottomPercentFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "percent": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyBottomPercentFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyCellColorFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyCellColorFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCellColorFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyCustomFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyCustomFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria1": { + "type": "string", + "nullable": true + }, + "criteria2": { + "type": "string", + "nullable": true + }, + "oper": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyCustomFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyDynamicFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyDynamicFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "criteria": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyDynamicFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyFontColorFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyFontColorFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyFontColorFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyIconFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyIconFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "icon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Icon" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyIconFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyTopItemsFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyTopItemsFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopItemsFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyTopPercentFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyTopPercentFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "percent": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyTopPercentFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action applyValuesFilter", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.applyValuesFilter", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/applyValuesFilter" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.tables.columns.filter.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.worksheets.tables.columns.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.worksheets.tables.columns.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Gets the range specified by the address or name.", + "operationId": "getWorksheetTableColumnRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.worksheets.tables.columns.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbook-table-column-id", + "in": "path", + "description": "key: id of workbookTableColumn", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableColumn" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action add", + "operationId": "workbooks.workbook.worksheets.tables.columns.add", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Column" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.worksheets.tables.columns.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.worksheets.tables.columns.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Column" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/clearFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clearFilters", + "operationId": "workbooks.workbook.worksheets.tables.clearFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/clearFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/clearFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/clearFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/convertToRange": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action convertToRange", + "operationId": "workbooks.workbook.worksheets.tables.convertToRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/convertToRange", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/convertToRange", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/convertToRange" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/dataBodyRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function dataBodyRange", + "operationId": "workbooks.workbook.worksheets.tables.dataBodyRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/dataBodyRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/dataBodyRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/headerRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function headerRowRange", + "operationId": "workbooks.workbook.worksheets.tables.headerRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/headerRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/headerRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range": { + "get": { + "tags": [ + "workbooks.Functions", + "workbook" + ], + "summary": "Invoke function range", + "operationId": "getWorksheetTableRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Range", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/reapplyFilters": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapplyFilters", + "operationId": "workbooks.workbook.worksheets.tables.reapplyFilters", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/reapplyFilters", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/reapplyFilters" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/totalRowRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function totalRowRange", + "operationId": "workbooks.workbook.worksheets.tables.totalRowRange", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/totalRowRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/totalRowRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Get rows from workbooks.", + "operationId": "listWorksheetTableRows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "$ref": "#/components/parameters/top" + }, + { + "$ref": "#/components/parameters/skip" + }, + { + "$ref": "#/components/parameters/search" + }, + { + "$ref": "#/components/parameters/filter" + }, + { + "$ref": "#/components/parameters/count" + }, + { + "name": "$orderby", + "in": "query", + "description": "Order items by property values", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "id desc", + "index", + "index desc", + "values", + "values desc" + ], + "type": "string" + } + } + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Rows" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "post": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Create new navigation property to rows for workbooks", + "operationId": "workbooks.workbook.worksheets.tables.CreateRows", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created navigation property.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "Workbook" + ], + "summary": "Get rows from workbooks", + "operationId": "getWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "index", + "values" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Updates the row in workbooks.", + "operationId": "updateWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable", + "workbook" + ], + "summary": "Delete row for workbooks", + "operationId": "deleteWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + }, + { + "$ref": "#/components/parameters/sessionId" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.tables.rows.range", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "workbookTableRow-id", + "in": "path", + "description": "key: id of workbookTableRow", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTableRow" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/me/drive/items/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Adds row to the end of the table.", + "operationId": "addWorksheetTableRow", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewRow" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Row", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.worksheets.tables.rows.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.worksheets.tables.rows.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Row" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Get sort from workbooks", + "operationId": "workbooks.workbook.worksheets.tables.GetSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "fields", + "matchCase", + "method" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TableSort" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Update the navigation property sort in workbooks", + "operationId": "workbooks.workbook.worksheets.tables.UpdateSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TableSort" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Delete navigation property sort for workbooks", + "operationId": "workbooks.workbook.worksheets.tables.DeleteSort", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/apply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action apply", + "operationId": "workbooks.workbook.worksheets.tables.sort.apply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean", + "default": false + }, + "method": { + "type": "string" + } + } + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/apply", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/apply" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/clear": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action clear", + "operationId": "workbooks.workbook.worksheets.tables.sort.clear", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/categoryAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/seriesAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/majorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/axes/valueAxis/minorGridlines/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/dataLabels/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/legend/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/format/line/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/{workbookChartPoint-id}/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/title/format/fill/clear", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/filter/clear" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/sort/reapply": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action reapply", + "operationId": "workbooks.workbook.worksheets.tables.sort.reapply", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/sort/reapply", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/sort/reapply" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet": { + "get": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Get worksheet from workbooks", + "operationId": "workbooks.workbook.worksheets.tables.GetWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "$select", + "in": "query", + "description": "Select properties to be returned", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "id", + "name", + "position", + "visibility", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + }, + { + "name": "$expand", + "in": "query", + "description": "Expand related entities", + "style": "form", + "explode": false, + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "enum": [ + "*", + "charts", + "names", + "pivotTables", + "protection", + "tables" + ], + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "Retrieved navigation property", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "patch": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Update the navigation property worksheet in workbooks", + "operationId": "workbooks.workbook.worksheets.tables.UpdateWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "requestBody": { + "description": "New navigation property values", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Worksheet" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "delete": { + "tags": [ + "workbooks.workbook.worksheets.workbookTable" + ], + "summary": "Delete navigation property worksheet for workbooks", + "operationId": "workbooks.workbook.worksheets.tables.DeleteWorksheet", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "If-Match", + "in": "header", + "description": "ETag", + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Success" + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "operation" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function cell", + "operationId": "workbooks.workbook.worksheets.tables.worksheet.cell", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "row", + "in": "path", + "description": "Usage: row={row}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + }, + { + "name": "column", + "in": "path", + "description": "Usage: column={column}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/cell(row={row},column={column})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/cell(row={row},column={column})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.tables.worksheet.range-bc5e", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range(address={address})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function range", + "operationId": "workbooks.workbook.worksheets.tables.worksheet.range-3b6a", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "address", + "in": "path", + "description": "Usage: address={address}", + "required": true, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/{workbookNamedItem-id1}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/{workbookTable-id1}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/range(address={address})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/{workbook-table-column-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/{workbookTableRow-id}/range()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/range()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.tables.worksheet.usedRange-5ff6", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function usedRange", + "operationId": "workbooks.workbook.worksheets.tables.worksheet.usedRange-63c8", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "workbook-table-id", + "in": "path", + "description": "key: id of workbookTable", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookTable" + }, + { + "name": "valuesOnly", + "in": "path", + "description": "Usage: valuesOnly={valuesOnly}", + "required": true, + "schema": { + "type": "boolean", + "default": false + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Range" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/{workbook-named-item-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet/usedRange(valuesOnly={valuesOnly})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/worksheet/usedRange()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add": { + "post": { + "tags": [ + "workbooks.Actions", + "workbook" + ], + "summary": "Creates a new table.", + "operationId": "addWorksheetTable", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "$ref": "#/components/parameters/sessionId" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/NewTable" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Table", + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/add" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/count()": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function count", + "operationId": "workbooks.workbook.worksheets.tables.count", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/functions/count", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/count()", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/count()", + "/workbooks/{workbook-id}/workbook/tables/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/count()", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/count()" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/itemAt(index={index})": { + "get": { + "tags": [ + "workbooks.Functions" + ], + "summary": "Invoke function itemAt", + "operationId": "workbooks.workbook.worksheets.tables.itemAt", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + }, + { + "name": "workbook-worksheet-id", + "in": "path", + "description": "key: id of workbookWorksheet", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "workbookWorksheet" + }, + { + "name": "index", + "in": "path", + "description": "Usage: index={index}", + "required": true, + "schema": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Table" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "function" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/tables/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/{workbook-chart-series-id}/points/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/{workbook-chart-id}/series/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/itemAt(index={index})", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/itemAt(index={index})" + ] + }, + "/workbooks/{workbook-id}/workbook/worksheets/add": { + "post": { + "tags": [ + "workbooks.Actions" + ], + "summary": "Invoke action add", + "operationId": "workbooks.workbook.worksheets.add", + "parameters": [ + { + "name": "workbook-id", + "in": "path", + "description": "key: id of workbook", + "required": true, + "schema": { + "type": "string" + }, + "x-ms-docs-key-type": "driveItem" + } + ], + "requestBody": { + "description": "Action parameters", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + } + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "anyOf": [ + { + "$ref": "#/components/schemas/Worksheet" + } + ], + "nullable": true + } + } + } + }, + "default": { + "$ref": "#/components/responses/error" + } + }, + "x-ms-docs-operation-type": "action" + }, + "x-ms-docs-grouped-path": [ + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/names/{workbook-named-item-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/charts/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/names/add", + "/workbooks/{workbook-id}/workbook/tables/{workbook-table-id}/worksheet/tables/add", + "/workbooks/{workbook-id}/workbook/tables/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/charts/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/names/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/columns/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/{workbook-table-id}/rows/add", + "/workbooks/{workbook-id}/workbook/worksheets/{workbook-worksheet-id}/tables/add" + ] + } + }, + "components": { + "securitySchemes": { + "OAuth2": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "tokenUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token", + "authorizationUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token", + "scopes": { + "write": "Files.ReadWrite" + } + } + } + } + }, + "schemas": { + "Entity": { + "title": "entity", + "type": "object", + "properties": { + "id": { + "type": "string" + } + } + }, + "microsoft.graph.directory": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "directory", + "type": "object", + "properties": { + "deletedItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + ] + }, + "microsoft.graph.directoryObject": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "directoryObject", + "type": "object", + "properties": { + "deletedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.device": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "device", + "type": "object", + "properties": { + "accountEnabled": { + "type": "boolean", + "nullable": true + }, + "alternativeSecurityIds": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.alternativeSecurityId" + } + }, + "approximateLastSignInDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "deviceId": { + "type": "string", + "nullable": true + }, + "deviceMetadata": { + "type": "string", + "nullable": true + }, + "deviceVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "isCompliant": { + "type": "boolean", + "nullable": true + }, + "isManaged": { + "type": "boolean", + "nullable": true + }, + "onPremisesLastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "onPremisesSyncEnabled": { + "type": "boolean", + "nullable": true + }, + "operatingSystem": { + "type": "string", + "nullable": true + }, + "operatingSystemVersion": { + "type": "string", + "nullable": true + }, + "physicalIds": { + "type": "array", + "items": { + "type": "string" + } + }, + "trustType": { + "type": "string", + "nullable": true + }, + "registeredOwners": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "registeredUsers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + ] + }, + "microsoft.graph.alternativeSecurityId": { + "title": "alternativeSecurityId", + "type": "object", + "properties": { + "type": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "identityProvider": { + "type": "string", + "nullable": true + }, + "key": { + "type": "string", + "format": "base64url", + "nullable": true + } + } + }, + "microsoft.graph.extension": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "extension", + "type": "object" + } + ] + }, + "microsoft.graph.directoryRole": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "directoryRole", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "roleTemplateId": { + "type": "string", + "nullable": true + }, + "members": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + ] + }, + "microsoft.graph.directoryRoleTemplate": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "directoryRoleTemplate", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.domain": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "domain", + "type": "object", + "properties": { + "authenticationType": { + "type": "string" + }, + "availabilityStatus": { + "type": "string", + "nullable": true + }, + "isAdminManaged": { + "type": "boolean" + }, + "isDefault": { + "type": "boolean" + }, + "isInitial": { + "type": "boolean" + }, + "isRoot": { + "type": "boolean" + }, + "isVerified": { + "type": "boolean" + }, + "supportedServices": { + "type": "array", + "items": { + "type": "string" + } + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domainState" + } + ], + "nullable": true + }, + "serviceConfigurationRecords": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + }, + "verificationDnsRecords": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + } + }, + "domainNameReferences": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + } + } + } + ] + }, + "microsoft.graph.domainState": { + "title": "domainState", + "type": "object", + "properties": { + "status": { + "type": "string", + "nullable": true + }, + "operation": { + "type": "string", + "nullable": true + }, + "lastActionDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.domainDnsRecord": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "domainDnsRecord", + "type": "object", + "properties": { + "isOptional": { + "type": "boolean" + }, + "label": { + "type": "string" + }, + "recordType": { + "type": "string", + "nullable": true + }, + "supportedService": { + "type": "string" + }, + "ttl": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + } + ] + }, + "microsoft.graph.domainDnsCnameRecord": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + }, + { + "title": "domainDnsCnameRecord", + "type": "object", + "properties": { + "canonicalName": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.domainDnsMxRecord": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + }, + { + "title": "domainDnsMxRecord", + "type": "object", + "properties": { + "mailExchange": { + "type": "string" + }, + "preference": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.domainDnsSrvRecord": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + }, + { + "title": "domainDnsSrvRecord", + "type": "object", + "properties": { + "nameTarget": { + "type": "string", + "nullable": true + }, + "port": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "priority": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "protocol": { + "type": "string", + "nullable": true + }, + "service": { + "type": "string", + "nullable": true + }, + "weight": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.domainDnsTxtRecord": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + }, + { + "title": "domainDnsTxtRecord", + "type": "object", + "properties": { + "text": { + "type": "string" + } + } + } + ] + }, + "microsoft.graph.domainDnsUnavailableRecord": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" + }, + { + "title": "domainDnsUnavailableRecord", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.licenseDetails": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "licenseDetails", + "type": "object", + "properties": { + "servicePlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.servicePlanInfo" + } + }, + "skuId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + }, + "skuPartNumber": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.servicePlanInfo": { + "title": "servicePlanInfo", + "type": "object", + "properties": { + "servicePlanId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + }, + "servicePlanName": { + "type": "string", + "nullable": true + }, + "provisioningStatus": { + "type": "string", + "nullable": true + }, + "appliesTo": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.group": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "group", + "type": "object", + "properties": { + "classification": { + "type": "string", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "groupTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "mail": { + "type": "string", + "nullable": true + }, + "mailEnabled": { + "type": "boolean", + "nullable": true + }, + "mailNickname": { + "type": "string", + "nullable": true + }, + "onPremisesLastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "onPremisesProvisioningErrors": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onPremisesProvisioningError" + } + ], + "nullable": true + } + }, + "onPremisesSecurityIdentifier": { + "type": "string", + "nullable": true + }, + "onPremisesSyncEnabled": { + "type": "boolean", + "nullable": true + }, + "proxyAddresses": { + "type": "array", + "items": { + "type": "string" + } + }, + "renewedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "securityEnabled": { + "type": "boolean", + "nullable": true + }, + "visibility": { + "type": "string", + "nullable": true + }, + "allowExternalSenders": { + "type": "boolean", + "nullable": true + }, + "autoSubscribeNewMembers": { + "type": "boolean", + "nullable": true + }, + "isSubscribedByMail": { + "type": "boolean", + "nullable": true + }, + "unseenCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "members": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "memberOf": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "createdOnBehalfOf": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + }, + "owners": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "settings": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupSetting" + } + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + }, + "threads": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + }, + "calendar": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + ], + "nullable": true + }, + "calendarView": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "events": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "conversations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.conversation" + } + }, + "photo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + ], + "nullable": true + }, + "photos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + }, + "acceptedSenders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "rejectedSenders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "drive": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + ], + "nullable": true + }, + "drives": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + }, + "sites": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + }, + "planner": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerGroup" + } + ], + "nullable": true + }, + "onenote": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + ], + "nullable": true + }, + "groupLifecyclePolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.groupLifecyclePolicy" + } + } + } + } + ] + }, + "microsoft.graph.onPremisesProvisioningError": { + "title": "onPremisesProvisioningError", + "type": "object", + "properties": { + "value": { + "type": "string", + "nullable": true + }, + "category": { + "type": "string", + "nullable": true + }, + "propertyCausingError": { + "type": "string", + "nullable": true + }, + "occurredDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.groupSetting": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "groupSetting", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "templateId": { + "type": "string", + "nullable": true + }, + "values": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.settingValue" + } + } + } + } + ] + }, + "microsoft.graph.conversationThread": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "conversationThread", + "type": "object", + "properties": { + "toRecipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + }, + "topic": { + "type": "string" + }, + "hasAttachments": { + "type": "boolean" + }, + "lastDeliveredDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "uniqueSenders": { + "type": "array", + "items": { + "type": "string" + } + }, + "ccRecipients": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + }, + "preview": { + "type": "string" + }, + "isLocked": { + "type": "boolean" + }, + "posts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.post" + } + } + } + } + ] + }, + "microsoft.graph.calendar": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "calendar", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "color": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.calendarColor" + } + ], + "nullable": true + }, + "changeKey": { + "type": "string", + "nullable": true + }, + "canShare": { + "type": "boolean", + "nullable": true + }, + "canViewPrivateItems": { + "type": "boolean", + "nullable": true + }, + "canEdit": { + "type": "boolean", + "nullable": true + }, + "owner": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.emailAddress" + } + ], + "nullable": true + }, + "events": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "calendarView": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + ] + }, + "microsoft.graph.outlookItem": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "outlookItem", + "type": "object", + "properties": { + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "changeKey": { + "type": "string", + "nullable": true + }, + "categories": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + ] + }, + "microsoft.graph.event": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookItem" + }, + { + "title": "event", + "type": "object", + "properties": { + "originalStartTimeZone": { + "type": "string", + "nullable": true + }, + "originalEndTimeZone": { + "type": "string", + "nullable": true + }, + "responseStatus": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.responseStatus" + } + ], + "nullable": true + }, + "iCalUId": { + "type": "string", + "nullable": true + }, + "reminderMinutesBeforeStart": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "isReminderOn": { + "type": "boolean", + "nullable": true + }, + "hasAttachments": { + "type": "boolean", + "nullable": true + }, + "subject": { + "type": "string", + "nullable": true + }, + "body": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemBody" + } + ], + "nullable": true + }, + "bodyPreview": { + "type": "string", + "nullable": true + }, + "importance": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.importance" + } + ], + "nullable": true + }, + "sensitivity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sensitivity" + } + ], + "nullable": true + }, + "start": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "originalStart": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "end": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "location": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.location" + } + ], + "nullable": true + }, + "locations": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.location" + } + ], + "nullable": true + } + }, + "isAllDay": { + "type": "boolean", + "nullable": true + }, + "isCancelled": { + "type": "boolean", + "nullable": true + }, + "isOrganizer": { + "type": "boolean", + "nullable": true + }, + "recurrence": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.patternedRecurrence" + } + ], + "nullable": true + }, + "responseRequested": { + "type": "boolean", + "nullable": true + }, + "seriesMasterId": { + "type": "string", + "nullable": true + }, + "showAs": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.freeBusyStatus" + } + ], + "nullable": true + }, + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.eventType" + } + ], + "nullable": true + }, + "attendees": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendee" + } + ], + "nullable": true + } + }, + "organizer": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + }, + "webLink": { + "type": "string", + "nullable": true + }, + "onlineMeetingUrl": { + "type": "string", + "nullable": true + }, + "calendar": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + ], + "nullable": true + }, + "instances": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + }, + "attachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + ] + }, + "microsoft.graph.conversation": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "conversation", + "type": "object", + "properties": { + "topic": { + "type": "string" + }, + "hasAttachments": { + "type": "boolean" + }, + "lastDeliveredDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "uniqueSenders": { + "type": "array", + "items": { + "type": "string" + } + }, + "preview": { + "type": "string" + }, + "threads": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.conversationThread" + } + } + } + } + ] + }, + "microsoft.graph.profilePhoto": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "profilePhoto", + "type": "object", + "properties": { + "height": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "width": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.baseItem": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "baseItem", + "type": "object", + "properties": { + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "description": { + "type": "string", + "nullable": true + }, + "eTag": { + "type": "string", + "nullable": true + }, + "lastModifiedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "name": { + "type": "string", + "nullable": true + }, + "parentReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemReference" + } + ], + "nullable": true + }, + "webUrl": { + "type": "string", + "nullable": true + }, + "createdByUser": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + }, + "lastModifiedByUser": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.drive": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + }, + { + "title": "drive", + "type": "object", + "properties": { + "driveType": { + "type": "string", + "nullable": true + }, + "owner": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "quota": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.quota" + } + ], + "nullable": true + }, + "sharePointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + }, + "system": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.systemFacet" + } + ], + "nullable": true + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + }, + "list": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.list" + } + ], + "nullable": true + }, + "root": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + }, + "special": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + } + } + } + ] + }, + "microsoft.graph.site": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + }, + { + "title": "site", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "root": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.root" + } + ], + "nullable": true + }, + "sharepointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + }, + "siteCollection": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.siteCollection" + } + ], + "nullable": true + }, + "columns": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + }, + "contentTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + }, + "drive": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + ], + "nullable": true + }, + "drives": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + } + }, + "lists": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.list" + } + }, + "sites": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.site" + } + }, + "onenote": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerGroup": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerGroup", + "type": "object", + "properties": { + "plans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + } + ] + }, + "microsoft.graph.onenote": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "onenote", + "type": "object", + "properties": { + "notebooks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + }, + "sections": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + }, + "sectionGroups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + }, + "pages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + }, + "resources": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteResource" + } + }, + "operations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperation" + } + } + } + } + ] + }, + "microsoft.graph.groupLifecyclePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "groupLifecyclePolicy", + "type": "object", + "properties": { + "groupLifetimeInDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "managedGroupTypes": { + "type": "string", + "nullable": true + }, + "alternateNotificationEmails": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.contract": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "contract", + "type": "object", + "properties": { + "contractType": { + "type": "string", + "nullable": true + }, + "customerId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + }, + "defaultDomainName": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.subscribedSku": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "subscribedSku", + "type": "object", + "properties": { + "capabilityStatus": { + "type": "string", + "nullable": true + }, + "consumedUnits": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "prepaidUnits": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.licenseUnitsDetail" + } + ], + "nullable": true + }, + "servicePlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.servicePlanInfo" + } + }, + "skuId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + }, + "skuPartNumber": { + "type": "string", + "nullable": true + }, + "appliesTo": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.licenseUnitsDetail": { + "title": "licenseUnitsDetail", + "type": "object", + "properties": { + "enabled": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "suspended": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "warning": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.organization": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "organization", + "type": "object", + "properties": { + "assignedPlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedPlan" + } + }, + "businessPhones": { + "type": "array", + "items": { + "type": "string" + } + }, + "city": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "countryLetterCode": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "marketingNotificationEmails": { + "type": "array", + "items": { + "type": "string" + } + }, + "onPremisesLastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "onPremisesSyncEnabled": { + "type": "boolean", + "nullable": true + }, + "postalCode": { + "type": "string", + "nullable": true + }, + "preferredLanguage": { + "type": "string", + "nullable": true + }, + "privacyProfile": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.privacyProfile" + } + ], + "nullable": true + }, + "provisionedPlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.provisionedPlan" + } + }, + "securityComplianceNotificationMails": { + "type": "array", + "items": { + "type": "string" + } + }, + "securityComplianceNotificationPhones": { + "type": "array", + "items": { + "type": "string" + } + }, + "state": { + "type": "string", + "nullable": true + }, + "street": { + "type": "string", + "nullable": true + }, + "technicalNotificationMails": { + "type": "array", + "items": { + "type": "string" + } + }, + "verifiedDomains": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.verifiedDomain" + } + }, + "mobileDeviceManagementAuthority": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mdmAuthority" + } + ], + "description": "Mobile device management authority." + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + } + } + } + ] + }, + "microsoft.graph.assignedPlan": { + "title": "assignedPlan", + "type": "object", + "properties": { + "assignedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "capabilityStatus": { + "type": "string", + "nullable": true + }, + "service": { + "type": "string", + "nullable": true + }, + "servicePlanId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + } + } + }, + "microsoft.graph.privacyProfile": { + "title": "privacyProfile", + "type": "object", + "properties": { + "contactEmail": { + "type": "string", + "nullable": true + }, + "statementUrl": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.provisionedPlan": { + "title": "provisionedPlan", + "type": "object", + "properties": { + "capabilityStatus": { + "type": "string", + "nullable": true + }, + "provisioningStatus": { + "type": "string", + "nullable": true + }, + "service": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.verifiedDomain": { + "title": "verifiedDomain", + "type": "object", + "properties": { + "capabilities": { + "type": "string", + "nullable": true + }, + "isDefault": { + "type": "boolean", + "nullable": true + }, + "isInitial": { + "type": "boolean", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.user": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "user", + "type": "object", + "properties": { + "accountEnabled": { + "type": "boolean", + "nullable": true + }, + "ageGroup": { + "type": "string", + "nullable": true + }, + "assignedLicenses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedLicense" + } + }, + "assignedPlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedPlan" + } + }, + "businessPhones": { + "type": "array", + "items": { + "type": "string" + } + }, + "city": { + "type": "string", + "nullable": true + }, + "companyName": { + "type": "string", + "nullable": true + }, + "consentProvidedForMinor": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "department": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "givenName": { + "type": "string", + "nullable": true + }, + "imAddresses": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "jobTitle": { + "type": "string", + "nullable": true + }, + "legalAgeGroupClassification": { + "type": "string", + "nullable": true + }, + "mail": { + "type": "string", + "nullable": true + }, + "mailNickname": { + "type": "string", + "nullable": true + }, + "mobilePhone": { + "type": "string", + "nullable": true + }, + "onPremisesExtensionAttributes": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onPremisesExtensionAttributes" + } + ], + "nullable": true + }, + "onPremisesImmutableId": { + "type": "string", + "nullable": true + }, + "onPremisesLastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "onPremisesProvisioningErrors": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onPremisesProvisioningError" + } + ], + "nullable": true + } + }, + "onPremisesSecurityIdentifier": { + "type": "string", + "nullable": true + }, + "onPremisesSyncEnabled": { + "type": "boolean", + "nullable": true + }, + "onPremisesDomainName": { + "type": "string", + "nullable": true + }, + "onPremisesSamAccountName": { + "type": "string", + "nullable": true + }, + "onPremisesUserPrincipalName": { + "type": "string", + "nullable": true + }, + "passwordPolicies": { + "type": "string", + "nullable": true + }, + "passwordProfile": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.passwordProfile" + } + ], + "nullable": true + }, + "officeLocation": { + "type": "string", + "nullable": true + }, + "postalCode": { + "type": "string", + "nullable": true + }, + "preferredLanguage": { + "type": "string", + "nullable": true + }, + "provisionedPlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.provisionedPlan" + } + }, + "proxyAddresses": { + "type": "array", + "items": { + "type": "string" + } + }, + "state": { + "type": "string", + "nullable": true + }, + "streetAddress": { + "type": "string", + "nullable": true + }, + "surname": { + "type": "string", + "nullable": true + }, + "usageLocation": { + "type": "string", + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "nullable": true + }, + "userType": { + "type": "string", + "nullable": true + }, + "mailboxSettings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailboxSettings" + } + ], + "nullable": true + }, + "aboutMe": { + "type": "string", + "nullable": true + }, + "birthday": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "hireDate": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "interests": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "mySite": { + "type": "string", + "nullable": true + }, + "pastProjects": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "preferredName": { + "type": "string", + "nullable": true + }, + "responsibilities": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "schools": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "skills": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "deviceEnrollmentLimit": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The limit on the maximum number of devices that the user is permitted to enroll. Allowed values are 5 or 1000." + }, + "ownedDevices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "registeredDevices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "manager": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + ], + "nullable": true + }, + "directReports": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "memberOf": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "createdObjects": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "ownedObjects": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + } + }, + "licenseDetails": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.licenseDetails" + } + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + }, + "outlook": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookUser" + } + ], + "nullable": true + }, + "messages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + }, + "mailFolders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + }, + "calendar": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + ], + "nullable": true + }, + "calendars": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + }, + "calendarGroups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendarGroup" + } + }, + "calendarView": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "events": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.event" + } + }, + "people": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.person" + } + }, + "contacts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + }, + "contactFolders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + }, + "inferenceClassification": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassification" + } + ], + "nullable": true + }, + "photo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + ], + "nullable": true + }, + "photos": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + }, + "drive": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + ], + "nullable": true + }, + "drives": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + }, + "planner": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerUser" + } + ], + "nullable": true + }, + "onenote": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenote" + } + ], + "nullable": true + }, + "managedDevices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + }, + "description": "The managed devices associated with the user." + }, + "managedAppRegistrations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + }, + "description": "Zero or more managed app registrations that belong to the user." + }, + "deviceManagementTroubleshootingEvents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + }, + "description": "The list of troubleshooting events for this user." + }, + "activities": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + }, + "insights": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.officeGraphInsights" + } + ], + "nullable": true + }, + "settings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.userSettings" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.assignedLicense": { + "title": "assignedLicense", + "type": "object", + "properties": { + "disabledPlans": { + "type": "array", + "items": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid" + } + }, + "skuId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + } + } + }, + "microsoft.graph.onPremisesExtensionAttributes": { + "title": "onPremisesExtensionAttributes", + "type": "object", + "properties": { + "extensionAttribute1": { + "type": "string", + "nullable": true + }, + "extensionAttribute2": { + "type": "string", + "nullable": true + }, + "extensionAttribute3": { + "type": "string", + "nullable": true + }, + "extensionAttribute4": { + "type": "string", + "nullable": true + }, + "extensionAttribute5": { + "type": "string", + "nullable": true + }, + "extensionAttribute6": { + "type": "string", + "nullable": true + }, + "extensionAttribute7": { + "type": "string", + "nullable": true + }, + "extensionAttribute8": { + "type": "string", + "nullable": true + }, + "extensionAttribute9": { + "type": "string", + "nullable": true + }, + "extensionAttribute10": { + "type": "string", + "nullable": true + }, + "extensionAttribute11": { + "type": "string", + "nullable": true + }, + "extensionAttribute12": { + "type": "string", + "nullable": true + }, + "extensionAttribute13": { + "type": "string", + "nullable": true + }, + "extensionAttribute14": { + "type": "string", + "nullable": true + }, + "extensionAttribute15": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.passwordProfile": { + "title": "passwordProfile", + "type": "object", + "properties": { + "password": { + "type": "string", + "nullable": true + }, + "forceChangePasswordNextSignIn": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.mailboxSettings": { + "title": "mailboxSettings", + "type": "object", + "properties": { + "automaticRepliesSetting": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.automaticRepliesSetting" + } + ], + "nullable": true + }, + "archiveFolder": { + "type": "string", + "nullable": true + }, + "timeZone": { + "type": "string", + "nullable": true + }, + "language": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.localeInfo" + } + ], + "nullable": true + }, + "workingHours": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workingHours" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.automaticRepliesSetting": { + "title": "automaticRepliesSetting", + "type": "object", + "properties": { + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.automaticRepliesStatus" + } + ], + "nullable": true + }, + "externalAudience": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalAudienceScope" + } + ], + "nullable": true + }, + "scheduledStartDateTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "scheduledEndDateTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "internalReplyMessage": { + "type": "string", + "nullable": true + }, + "externalReplyMessage": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.dateTimeTimeZone": { + "title": "dateTimeTimeZone", + "type": "object", + "properties": { + "dateTime": { + "type": "string" + }, + "timeZone": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.localeInfo": { + "title": "localeInfo", + "type": "object", + "properties": { + "locale": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.workingHours": { + "title": "workingHours", + "type": "object", + "properties": { + "daysOfWeek": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dayOfWeek" + } + ], + "nullable": true + } + }, + "startTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "format": "time", + "nullable": true + }, + "endTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "format": "time", + "nullable": true + }, + "timeZone": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeZoneBase" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.timeZoneBase": { + "title": "timeZoneBase", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.outlookUser": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "outlookUser", + "type": "object", + "properties": { + "masterCategories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.outlookCategory" + } + } + } + } + ] + }, + "microsoft.graph.message": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookItem" + }, + { + "title": "message", + "type": "object", + "properties": { + "receivedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "sentDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "hasAttachments": { + "type": "boolean", + "nullable": true + }, + "internetMessageId": { + "type": "string", + "nullable": true + }, + "internetMessageHeaders": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.internetMessageHeader" + } + ], + "nullable": true + } + }, + "subject": { + "type": "string", + "nullable": true + }, + "body": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemBody" + } + ], + "nullable": true + }, + "bodyPreview": { + "type": "string", + "nullable": true + }, + "importance": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.importance" + } + ], + "nullable": true + }, + "parentFolderId": { + "type": "string", + "nullable": true + }, + "sender": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + }, + "from": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + }, + "toRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "ccRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "bccRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "replyTo": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "conversationId": { + "type": "string", + "nullable": true + }, + "uniqueBody": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemBody" + } + ], + "nullable": true + }, + "isDeliveryReceiptRequested": { + "type": "boolean", + "nullable": true + }, + "isReadReceiptRequested": { + "type": "boolean", + "nullable": true + }, + "isRead": { + "type": "boolean", + "nullable": true + }, + "isDraft": { + "type": "boolean", + "nullable": true + }, + "webLink": { + "type": "string", + "nullable": true + }, + "inferenceClassification": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationType" + } + ], + "nullable": true + }, + "flag": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.followupFlag" + } + ], + "nullable": true + }, + "attachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + ] + }, + "microsoft.graph.mailFolder": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mailFolder", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "parentFolderId": { + "type": "string", + "nullable": true + }, + "childFolderCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "unreadItemCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "totalItemCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "messages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.message" + } + }, + "messageRules": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.messageRule" + } + }, + "childFolders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mailFolder" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + ] + }, + "microsoft.graph.calendarGroup": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "calendarGroup", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "classId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid", + "nullable": true + }, + "changeKey": { + "type": "string", + "nullable": true + }, + "calendars": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.calendar" + } + } + } + } + ] + }, + "microsoft.graph.person": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "person", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "givenName": { + "type": "string", + "nullable": true + }, + "surname": { + "type": "string", + "nullable": true + }, + "birthday": { + "type": "string", + "nullable": true + }, + "personNotes": { + "type": "string", + "nullable": true + }, + "isFavorite": { + "type": "boolean", + "nullable": true + }, + "scoredEmailAddresses": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.scoredEmailAddress" + } + ], + "nullable": true + } + }, + "phones": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.phone" + } + ], + "nullable": true + } + }, + "postalAddresses": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.location" + } + ], + "nullable": true + } + }, + "websites": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.website" + } + ], + "nullable": true + } + }, + "jobTitle": { + "type": "string", + "nullable": true + }, + "companyName": { + "type": "string", + "nullable": true + }, + "yomiCompany": { + "type": "string", + "nullable": true + }, + "department": { + "type": "string", + "nullable": true + }, + "officeLocation": { + "type": "string", + "nullable": true + }, + "profession": { + "type": "string", + "nullable": true + }, + "personType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.personType" + } + ], + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "nullable": true + }, + "imAddress": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.contact": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookItem" + }, + { + "title": "contact", + "type": "object", + "properties": { + "parentFolderId": { + "type": "string", + "nullable": true + }, + "birthday": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "fileAs": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "givenName": { + "type": "string", + "nullable": true + }, + "initials": { + "type": "string", + "nullable": true + }, + "middleName": { + "type": "string", + "nullable": true + }, + "nickName": { + "type": "string", + "nullable": true + }, + "surname": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "yomiGivenName": { + "type": "string", + "nullable": true + }, + "yomiSurname": { + "type": "string", + "nullable": true + }, + "yomiCompanyName": { + "type": "string", + "nullable": true + }, + "generation": { + "type": "string", + "nullable": true + }, + "emailAddresses": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.emailAddress" + } + ], + "nullable": true + } + }, + "imAddresses": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "jobTitle": { + "type": "string", + "nullable": true + }, + "companyName": { + "type": "string", + "nullable": true + }, + "department": { + "type": "string", + "nullable": true + }, + "officeLocation": { + "type": "string", + "nullable": true + }, + "profession": { + "type": "string", + "nullable": true + }, + "businessHomePage": { + "type": "string", + "nullable": true + }, + "assistantName": { + "type": "string", + "nullable": true + }, + "manager": { + "type": "string", + "nullable": true + }, + "homePhones": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "mobilePhone": { + "type": "string", + "nullable": true + }, + "businessPhones": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "homeAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "businessAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "otherAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "spouseName": { + "type": "string", + "nullable": true + }, + "personalNotes": { + "type": "string", + "nullable": true + }, + "children": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + }, + "photo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.profilePhoto" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.contactFolder": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "contactFolder", + "type": "object", + "properties": { + "parentFolderId": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "contacts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contact" + } + }, + "childFolders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contactFolder" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + ] + }, + "microsoft.graph.inferenceClassification": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "inferenceClassification", + "type": "object", + "properties": { + "overrides": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationOverride" + } + } + } + } + ] + }, + "microsoft.graph.plannerUser": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerUser", + "type": "object", + "properties": { + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + }, + "plans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + } + } + } + ] + }, + "microsoft.graph.managedDevice": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDevice", + "type": "object", + "properties": { + "userId": { + "type": "string", + "description": "Unique Identifier for the user associated with the device", + "nullable": true + }, + "deviceName": { + "type": "string", + "description": "Name of the device", + "nullable": true + }, + "managedDeviceOwnerType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceOwnerType" + } + ], + "description": "Ownership of the device. Can be 'company' or 'personal'" + }, + "deviceActionResults": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceActionResult" + } + ], + "nullable": true + }, + "description": "List of ComplexType deviceActionResult objects." + }, + "enrolledDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Enrollment time of the device.", + "format": "date-time" + }, + "lastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time that the device last completed a successful sync with Intune.", + "format": "date-time" + }, + "operatingSystem": { + "type": "string", + "description": "Operating system of the device. Windows, iOS, etc.", + "nullable": true + }, + "complianceState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceState" + } + ], + "description": "Compliance state of the device." + }, + "jailBroken": { + "type": "string", + "description": "whether the device is jail broken or rooted.", + "nullable": true + }, + "managementAgent": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managementAgentType" + } + ], + "description": "Management channel of the device. Intune, EAS, etc." + }, + "osVersion": { + "type": "string", + "description": "Operating system version of the device.", + "nullable": true + }, + "easActivated": { + "type": "boolean", + "description": "Whether the device is Exchange ActiveSync activated." + }, + "easDeviceId": { + "type": "string", + "description": "Exchange ActiveSync Id of the device.", + "nullable": true + }, + "easActivationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Exchange ActivationSync activation time of the device.", + "format": "date-time" + }, + "azureADRegistered": { + "type": "boolean", + "description": "Whether the device is Azure Active Directory registered.", + "nullable": true + }, + "deviceEnrollmentType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentType" + } + ], + "description": "Enrollment type of the device." + }, + "activationLockBypassCode": { + "type": "string", + "description": "Code that allows the Activation Lock on a device to be bypassed.", + "nullable": true + }, + "emailAddress": { + "type": "string", + "description": "Email(s) for the user associated with the device", + "nullable": true + }, + "azureADDeviceId": { + "type": "string", + "description": "The unique identifier for the Azure Active Directory device. Read only.", + "nullable": true + }, + "deviceRegistrationState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceRegistrationState" + } + ], + "description": "Device registration state." + }, + "deviceCategoryDisplayName": { + "type": "string", + "description": "Device category display name", + "nullable": true + }, + "isSupervised": { + "type": "boolean", + "description": "Device supervised status" + }, + "exchangeLastSuccessfulSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last time the device contacted Exchange.", + "format": "date-time" + }, + "exchangeAccessState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState" + } + ], + "description": "The Access State of the device in Exchange." + }, + "exchangeAccessStateReason": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeAccessStateReason" + } + ], + "description": "The reason for the device's access state in Exchange." + }, + "remoteAssistanceSessionUrl": { + "type": "string", + "description": "Url that allows a Remote Assistance session to be established with the device.", + "nullable": true + }, + "remoteAssistanceSessionErrorDetails": { + "type": "string", + "description": "An error string that identifies issues when creating Remote Assistance session objects.", + "nullable": true + }, + "isEncrypted": { + "type": "boolean", + "description": "Device encryption status" + }, + "userPrincipalName": { + "type": "string", + "description": "Device user principal name", + "nullable": true + }, + "model": { + "type": "string", + "description": "Model of the device", + "nullable": true + }, + "manufacturer": { + "type": "string", + "description": "Manufacturer of the device", + "nullable": true + }, + "imei": { + "type": "string", + "description": "IMEI", + "nullable": true + }, + "complianceGracePeriodExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device compliance grace period expires", + "format": "date-time" + }, + "serialNumber": { + "type": "string", + "description": "SerialNumber", + "nullable": true + }, + "phoneNumber": { + "type": "string", + "description": "Phone number of the device", + "nullable": true + }, + "androidSecurityPatchLevel": { + "type": "string", + "description": "Android security patch level", + "nullable": true + }, + "userDisplayName": { + "type": "string", + "description": "User display name", + "nullable": true + }, + "configurationManagerClientEnabledFeatures": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.configurationManagerClientEnabledFeatures" + } + ], + "description": "ConfigrMgr client enabled features", + "nullable": true + }, + "wiFiMacAddress": { + "type": "string", + "description": "Wi-Fi MAC", + "nullable": true + }, + "deviceHealthAttestationState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceHealthAttestationState" + } + ], + "description": "The device health attestation state.", + "nullable": true + }, + "subscriberCarrier": { + "type": "string", + "description": "Subscriber Carrier", + "nullable": true + }, + "meid": { + "type": "string", + "description": "MEID", + "nullable": true + }, + "totalStorageSpaceInBytes": { + "type": "integer", + "description": "Total Storage in Bytes", + "format": "int64" + }, + "freeStorageSpaceInBytes": { + "type": "integer", + "description": "Free Storage in Bytes", + "format": "int64" + }, + "managedDeviceName": { + "type": "string", + "description": "Automatically generated name to identify a device. Can be overwritten to a user friendly name.", + "nullable": true + }, + "partnerReportedThreatState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedDevicePartnerReportedHealthState" + } + ], + "description": "Indicates the threat state of a device when a Mobile Threat Defense partner is in use by the account and device. Read Only." + }, + "deviceConfigurationStates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationState" + }, + "description": "Device configuration states for this device." + }, + "deviceCategory": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + } + ], + "description": "Device category", + "nullable": true + }, + "deviceCompliancePolicyStates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState" + }, + "description": "Device compliance policy states for this device." + } + }, + "description": "Devices that are managed or pre-enrolled through Intune" + } + ] + }, + "microsoft.graph.managedAppRegistration": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedAppRegistration", + "type": "object", + "properties": { + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Date and time of creation", + "format": "date-time" + }, + "lastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Date and time of last the app synced with management service.", + "format": "date-time" + }, + "applicationVersion": { + "type": "string", + "description": "App version", + "nullable": true + }, + "managementSdkVersion": { + "type": "string", + "description": "App management SDK version", + "nullable": true + }, + "platformVersion": { + "type": "string", + "description": "Operating System version", + "nullable": true + }, + "deviceType": { + "type": "string", + "description": "Host device type", + "nullable": true + }, + "deviceTag": { + "type": "string", + "description": "App management SDK generated tag, which helps relate apps hosted on the same device. Not guaranteed to relate apps in all conditions.", + "nullable": true + }, + "deviceName": { + "type": "string", + "description": "Host device name", + "nullable": true + }, + "flaggedReasons": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppFlaggedReason" + } + ] + }, + "description": "Zero or more reasons an app registration is flagged. E.g. app running on rooted device" + }, + "userId": { + "type": "string", + "description": "The user Id to who this app registration belongs.", + "nullable": true + }, + "appIdentifier": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppIdentifier" + } + ], + "description": "The app package Identifier", + "nullable": true + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + }, + "appliedPolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + }, + "description": "Zero or more policys already applied on the registered app when it last synchronized with managment service." + }, + "intendedPolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + }, + "description": "Zero or more policies admin intended for the app as of now." + }, + "operations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppOperation" + }, + "description": "Zero or more long running operations triggered on the app registration." + } + }, + "description": "The ManagedAppEntity is the base entity type for all other entity types under app management workflow." + } + ] + }, + "microsoft.graph.deviceManagementTroubleshootingEvent": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceManagementTroubleshootingEvent", + "type": "object", + "properties": { + "eventDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Time when the event occurred .", + "format": "date-time" + }, + "correlationId": { + "type": "string", + "description": "Id used for tracing the failure in the service.", + "nullable": true + } + }, + "description": "Event representing an general failure." + } + ] + }, + "microsoft.graph.userActivity": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "userActivity", + "type": "object", + "properties": { + "visualElements": { + "$ref": "#/components/schemas/microsoft.graph.visualInfo" + }, + "activitySourceHost": { + "type": "string" + }, + "activationUrl": { + "type": "string" + }, + "appActivityId": { + "type": "string" + }, + "appDisplayName": { + "type": "string", + "nullable": true + }, + "contentUrl": { + "type": "string", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "fallbackUrl": { + "type": "string", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "userTimezone": { + "type": "string", + "nullable": true + }, + "contentInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.status" + } + ], + "nullable": true + }, + "historyItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.activityHistoryItem" + } + } + } + } + ] + }, + "microsoft.graph.officeGraphInsights": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "officeGraphInsights", + "type": "object", + "properties": { + "trending": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.trending" + } + }, + "shared": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sharedInsight" + } + }, + "used": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.usedInsight" + } + } + } + } + ] + }, + "microsoft.graph.userSettings": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "userSettings", + "type": "object", + "properties": { + "contributionToContentDiscoveryDisabled": { + "type": "boolean" + }, + "contributionToContentDiscoveryAsOrganizationDisabled": { + "type": "boolean" + } + } + } + ] + }, + "microsoft.graph.settingValue": { + "title": "settingValue", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "value": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.groupSettingTemplate": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "groupSettingTemplate", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "values": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.settingTemplateValue" + } + } + } + } + ] + }, + "microsoft.graph.settingTemplateValue": { + "title": "settingTemplateValue", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + }, + "defaultValue": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.ComplexExtensionValue": { + "title": "ComplexExtensionValue", + "type": "object" + }, + "microsoft.graph.schemaExtension": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "schemaExtension", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "targetTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "properties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extensionSchemaProperty" + } + }, + "status": { + "type": "string" + }, + "owner": { + "type": "string" + } + } + } + ] + }, + "microsoft.graph.extensionSchemaProperty": { + "title": "extensionSchemaProperty", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.attachment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "attachment", + "type": "object", + "properties": { + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "contentType": { + "type": "string", + "nullable": true + }, + "size": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "isInline": { + "type": "boolean" + } + } + } + ] + }, + "microsoft.graph.customTimeZone": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeZoneBase" + }, + { + "title": "customTimeZone", + "type": "object", + "properties": { + "bias": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "standardOffset": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.standardTimeZoneOffset" + } + ], + "nullable": true + }, + "daylightOffset": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.daylightTimeZoneOffset" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.standardTimeZoneOffset": { + "title": "standardTimeZoneOffset", + "type": "object", + "properties": { + "time": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "format": "time", + "nullable": true + }, + "dayOccurrence": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "dayOfWeek": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dayOfWeek" + } + ], + "nullable": true + }, + "month": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "year": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.daylightTimeZoneOffset": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.standardTimeZoneOffset" + }, + { + "title": "daylightTimeZoneOffset", + "type": "object", + "properties": { + "daylightBias": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.outlookCategory": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "outlookCategory", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "color": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.categoryColor" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.recipient": { + "title": "recipient", + "type": "object", + "properties": { + "emailAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.emailAddress" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.emailAddress": { + "title": "emailAddress", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "address": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.attendeeBase": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + }, + { + "title": "attendeeBase", + "type": "object", + "properties": { + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendeeType" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.meetingTimeSuggestionsResult": { + "title": "meetingTimeSuggestionsResult", + "type": "object", + "properties": { + "meetingTimeSuggestions": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.meetingTimeSuggestion" + } + ], + "nullable": true + } + }, + "emptySuggestionsReason": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.meetingTimeSuggestion": { + "title": "meetingTimeSuggestion", + "type": "object", + "properties": { + "meetingTimeSlot": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeSlot" + } + ], + "nullable": true + }, + "confidence": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "organizerAvailability": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.freeBusyStatus" + } + ], + "nullable": true + }, + "attendeeAvailability": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendeeAvailability" + } + ], + "nullable": true + } + }, + "locations": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.location" + } + ], + "nullable": true + } + }, + "suggestionReason": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.timeSlot": { + "title": "timeSlot", + "type": "object", + "properties": { + "start": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "end": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.attendeeAvailability": { + "title": "attendeeAvailability", + "type": "object", + "properties": { + "attendee": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendeeBase" + } + ], + "nullable": true + }, + "availability": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.freeBusyStatus" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.location": { + "title": "location", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "locationEmailAddress": { + "type": "string", + "nullable": true + }, + "address": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "coordinates": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookGeoCoordinates" + } + ], + "nullable": true + }, + "locationUri": { + "type": "string", + "nullable": true + }, + "locationType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.locationType" + } + ], + "nullable": true + }, + "uniqueId": { + "type": "string", + "nullable": true + }, + "uniqueIdType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.locationUniqueIdType" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.physicalAddress": { + "title": "physicalAddress", + "type": "object", + "properties": { + "street": { + "type": "string", + "nullable": true + }, + "city": { + "type": "string", + "nullable": true + }, + "state": { + "type": "string", + "nullable": true + }, + "countryOrRegion": { + "type": "string", + "nullable": true + }, + "postalCode": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.outlookGeoCoordinates": { + "title": "outlookGeoCoordinates", + "type": "object", + "properties": { + "altitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "latitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "longitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "accuracy": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "altitudeAccuracy": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + } + } + }, + "microsoft.graph.locationConstraint": { + "title": "locationConstraint", + "type": "object", + "properties": { + "isRequired": { + "type": "boolean", + "nullable": true + }, + "suggestLocation": { + "type": "boolean", + "nullable": true + }, + "locations": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.locationConstraintItem" + } + ], + "nullable": true + } + } + } + }, + "microsoft.graph.locationConstraintItem": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.location" + }, + { + "title": "locationConstraintItem", + "type": "object", + "properties": { + "resolveAvailability": { + "type": "boolean", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.timeConstraint": { + "title": "timeConstraint", + "type": "object", + "properties": { + "activityDomain": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.activityDomain" + } + ], + "nullable": true + }, + "timeslots": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.timeSlot" + } + ], + "nullable": true + } + } + } + }, + "microsoft.graph.reminder": { + "title": "reminder", + "type": "object", + "properties": { + "eventId": { + "type": "string", + "nullable": true + }, + "eventStartTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "eventEndTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "changeKey": { + "type": "string", + "nullable": true + }, + "eventSubject": { + "type": "string", + "nullable": true + }, + "eventLocation": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.location" + } + ], + "nullable": true + }, + "eventWebLink": { + "type": "string", + "nullable": true + }, + "reminderFireTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.mailTips": { + "title": "mailTips", + "type": "object", + "properties": { + "emailAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.emailAddress" + } + ], + "nullable": true + }, + "automaticReplies": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.automaticRepliesMailTips" + } + ], + "nullable": true + }, + "mailboxFull": { + "type": "boolean", + "nullable": true + }, + "customMailTip": { + "type": "string", + "nullable": true + }, + "externalMemberCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "totalMemberCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "deliveryRestricted": { + "type": "boolean", + "nullable": true + }, + "isModerated": { + "type": "boolean", + "nullable": true + }, + "recipientScope": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipientScopeType" + } + ], + "nullable": true + }, + "recipientSuggestions": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "maxMessageSize": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "error": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mailTipsError" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.automaticRepliesMailTips": { + "title": "automaticRepliesMailTips", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "messageLanguage": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.localeInfo" + } + ], + "nullable": true + }, + "scheduledStartTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "scheduledEndTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.mailTipsError": { + "title": "mailTipsError", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "code": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.timeZoneInformation": { + "title": "timeZoneInformation", + "type": "object", + "properties": { + "alias": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.messageRule": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "messageRule", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "sequence": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "conditions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.messageRulePredicates" + } + ], + "nullable": true + }, + "actions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.messageRuleActions" + } + ], + "nullable": true + }, + "exceptions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.messageRulePredicates" + } + ], + "nullable": true + }, + "isEnabled": { + "type": "boolean", + "nullable": true + }, + "hasError": { + "type": "boolean", + "nullable": true + }, + "isReadOnly": { + "type": "boolean", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.singleValueLegacyExtendedProperty": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "singleValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.multiValueLegacyExtendedProperty": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "multiValueLegacyExtendedProperty", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + } + } + ] + }, + "microsoft.graph.internetMessageHeader": { + "title": "internetMessageHeader", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "value": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.itemBody": { + "title": "itemBody", + "type": "object", + "properties": { + "contentType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.bodyType" + } + ], + "nullable": true + }, + "content": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.followupFlag": { + "title": "followupFlag", + "type": "object", + "properties": { + "completedDateTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "dueDateTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "startDateTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" + } + ], + "nullable": true + }, + "flagStatus": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.followupFlagStatus" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.fileAttachment": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attachment" + }, + { + "title": "fileAttachment", + "type": "object", + "properties": { + "contentId": { + "type": "string", + "nullable": true + }, + "contentLocation": { + "type": "string", + "nullable": true + }, + "contentBytes": { + "type": "string", + "format": "base64url", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.itemAttachment": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attachment" + }, + { + "title": "itemAttachment", + "type": "object", + "properties": { + "item": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookItem" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.responseStatus": { + "title": "responseStatus", + "type": "object", + "properties": { + "response": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.responseType" + } + ], + "nullable": true + }, + "time": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.patternedRecurrence": { + "title": "patternedRecurrence", + "type": "object", + "properties": { + "pattern": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recurrencePattern" + } + ], + "nullable": true + }, + "range": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recurrenceRange" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.recurrencePattern": { + "title": "recurrencePattern", + "type": "object", + "properties": { + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recurrencePatternType" + } + ], + "nullable": true + }, + "interval": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + }, + "month": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + }, + "dayOfMonth": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + }, + "daysOfWeek": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dayOfWeek" + } + ], + "nullable": true + } + }, + "firstDayOfWeek": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dayOfWeek" + } + ], + "nullable": true + }, + "index": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.weekIndex" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.recurrenceRange": { + "title": "recurrenceRange", + "type": "object", + "properties": { + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recurrenceRangeType" + } + ], + "nullable": true + }, + "startDate": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date", + "nullable": true + }, + "endDate": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date", + "nullable": true + }, + "recurrenceTimeZone": { + "type": "string", + "nullable": true + }, + "numberOfOccurrences": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + } + } + }, + "microsoft.graph.attendee": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attendeeBase" + }, + { + "title": "attendee", + "type": "object", + "properties": { + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.responseStatus" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.eventMessage": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.message" + }, + { + "title": "eventMessage", + "type": "object", + "properties": { + "meetingMessageType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.meetingMessageType" + } + ], + "nullable": true + }, + "event": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.event" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.messageRulePredicates": { + "title": "messageRulePredicates", + "type": "object", + "properties": { + "categories": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "subjectContains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "bodyContains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "bodyOrSubjectContains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "senderContains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "recipientContains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "headerContains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "messageActionFlag": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.messageActionFlag" + } + ], + "nullable": true + }, + "importance": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.importance" + } + ], + "nullable": true + }, + "sensitivity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sensitivity" + } + ], + "nullable": true + }, + "fromAddresses": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "sentToAddresses": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "sentToMe": { + "type": "boolean", + "nullable": true + }, + "sentOnlyToMe": { + "type": "boolean", + "nullable": true + }, + "sentCcMe": { + "type": "boolean", + "nullable": true + }, + "sentToOrCcMe": { + "type": "boolean", + "nullable": true + }, + "notSentToMe": { + "type": "boolean", + "nullable": true + }, + "hasAttachments": { + "type": "boolean", + "nullable": true + }, + "isApprovalRequest": { + "type": "boolean", + "nullable": true + }, + "isAutomaticForward": { + "type": "boolean", + "nullable": true + }, + "isAutomaticReply": { + "type": "boolean", + "nullable": true + }, + "isEncrypted": { + "type": "boolean", + "nullable": true + }, + "isMeetingRequest": { + "type": "boolean", + "nullable": true + }, + "isMeetingResponse": { + "type": "boolean", + "nullable": true + }, + "isNonDeliveryReport": { + "type": "boolean", + "nullable": true + }, + "isPermissionControlled": { + "type": "boolean", + "nullable": true + }, + "isReadReceipt": { + "type": "boolean", + "nullable": true + }, + "isSigned": { + "type": "boolean", + "nullable": true + }, + "isVoicemail": { + "type": "boolean", + "nullable": true + }, + "withinSizeRange": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sizeRange" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.sizeRange": { + "title": "sizeRange", + "type": "object", + "properties": { + "minimumSize": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "maximumSize": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.messageRuleActions": { + "title": "messageRuleActions", + "type": "object", + "properties": { + "moveToFolder": { + "type": "string", + "nullable": true + }, + "copyToFolder": { + "type": "string", + "nullable": true + }, + "delete": { + "type": "boolean", + "nullable": true + }, + "permanentDelete": { + "type": "boolean", + "nullable": true + }, + "markAsRead": { + "type": "boolean", + "nullable": true + }, + "markImportance": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.importance" + } + ], + "nullable": true + }, + "forwardTo": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "forwardAsAttachmentTo": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "redirectTo": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "assignCategories": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "stopProcessingRules": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.referenceAttachment": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.attachment" + }, + { + "title": "referenceAttachment", + "type": "object" + } + ] + }, + "microsoft.graph.openTypeExtension": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.extension" + }, + { + "title": "openTypeExtension", + "type": "object", + "properties": { + "extensionName": { + "type": "string" + } + } + } + ] + }, + "microsoft.graph.post": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.outlookItem" + }, + { + "title": "post", + "type": "object", + "properties": { + "body": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemBody" + } + ], + "nullable": true + }, + "receivedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "hasAttachments": { + "type": "boolean" + }, + "from": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + }, + "sender": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + }, + "conversationThreadId": { + "type": "string", + "nullable": true + }, + "newParticipants": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + }, + "conversationId": { + "type": "string", + "nullable": true + }, + "extensions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.extension" + } + }, + "inReplyTo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.post" + } + ], + "nullable": true + }, + "attachments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.attachment" + } + }, + "singleValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty" + } + }, + "multiValueExtendedProperties": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty" + } + } + } + } + ] + }, + "microsoft.graph.inferenceClassificationOverride": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "inferenceClassificationOverride", + "type": "object", + "properties": { + "classifyAs": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.inferenceClassificationType" + } + ], + "nullable": true + }, + "senderEmailAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.emailAddress" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.scoredEmailAddress": { + "title": "scoredEmailAddress", + "type": "object", + "properties": { + "address": { + "type": "string", + "nullable": true + }, + "relevanceScore": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "selectionLikelihood": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.selectionLikelihoodInfo" + } + ], + "nullable": true + }, + "ItemId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.phone": { + "title": "phone", + "type": "object", + "properties": { + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.phoneType" + } + ], + "nullable": true + }, + "number": { + "type": "string", + "nullable": true + }, + "region": { + "type": "string", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.website": { + "title": "website", + "type": "object", + "properties": { + "type": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.websiteType" + } + ], + "nullable": true + }, + "address": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.personType": { + "title": "personType", + "type": "object", + "properties": { + "class": { + "type": "string", + "nullable": true + }, + "subclass": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.identitySet": { + "title": "identitySet", + "type": "object", + "properties": { + "application": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identity" + } + ], + "nullable": true + }, + "device": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identity" + } + ], + "nullable": true + }, + "user": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identity" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.identity": { + "title": "identity", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.itemReference": { + "title": "itemReference", + "type": "object", + "properties": { + "driveId": { + "type": "string", + "nullable": true + }, + "driveType": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "path": { + "type": "string", + "nullable": true + }, + "shareId": { + "type": "string", + "nullable": true + }, + "sharepointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.sharepointIds": { + "title": "sharepointIds", + "type": "object", + "properties": { + "listId": { + "type": "string", + "nullable": true + }, + "listItemId": { + "type": "string", + "nullable": true + }, + "listItemUniqueId": { + "type": "string", + "nullable": true + }, + "siteId": { + "type": "string", + "nullable": true + }, + "siteUrl": { + "type": "string", + "nullable": true + }, + "webId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.baseItemVersion": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "baseItemVersion", + "type": "object", + "properties": { + "lastModifiedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "publication": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.publicationFacet" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.publicationFacet": { + "title": "publicationFacet", + "type": "object", + "properties": { + "level": { + "type": "string", + "nullable": true + }, + "versionId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.columnDefinition": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "columnDefinition", + "type": "object", + "properties": { + "boolean": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.booleanColumn" + } + ], + "nullable": true + }, + "calculated": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.calculatedColumn" + } + ], + "nullable": true + }, + "choice": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.choiceColumn" + } + ], + "nullable": true + }, + "columnGroup": { + "type": "string", + "nullable": true + }, + "currency": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.currencyColumn" + } + ], + "nullable": true + }, + "dateTime": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dateTimeColumn" + } + ], + "nullable": true + }, + "defaultValue": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defaultColumnValue" + } + ], + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "enforceUniqueValues": { + "type": "boolean", + "nullable": true + }, + "hidden": { + "type": "boolean", + "nullable": true + }, + "indexed": { + "type": "boolean", + "nullable": true + }, + "lookup": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.lookupColumn" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "number": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.numberColumn" + } + ], + "nullable": true + }, + "personOrGroup": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.personOrGroupColumn" + } + ], + "nullable": true + }, + "readOnly": { + "type": "boolean", + "nullable": true + }, + "required": { + "type": "boolean", + "nullable": true + }, + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.textColumn" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.booleanColumn": { + "title": "booleanColumn", + "type": "object" + }, + "microsoft.graph.calculatedColumn": { + "title": "calculatedColumn", + "type": "object", + "properties": { + "format": { + "type": "string", + "nullable": true + }, + "formula": { + "type": "string", + "nullable": true + }, + "outputType": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.choiceColumn": { + "title": "choiceColumn", + "type": "object", + "properties": { + "allowTextEntry": { + "type": "boolean", + "nullable": true + }, + "choices": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "displayAs": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.currencyColumn": { + "title": "currencyColumn", + "type": "object", + "properties": { + "locale": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.dateTimeColumn": { + "title": "dateTimeColumn", + "type": "object", + "properties": { + "displayAs": { + "type": "string", + "nullable": true + }, + "format": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.defaultColumnValue": { + "title": "defaultColumnValue", + "type": "object", + "properties": { + "formula": { + "type": "string", + "nullable": true + }, + "value": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.lookupColumn": { + "title": "lookupColumn", + "type": "object", + "properties": { + "allowMultipleValues": { + "type": "boolean", + "nullable": true + }, + "allowUnlimitedLength": { + "type": "boolean", + "nullable": true + }, + "columnName": { + "type": "string", + "nullable": true + }, + "listId": { + "type": "string", + "nullable": true + }, + "primaryLookupColumnId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.numberColumn": { + "title": "numberColumn", + "type": "object", + "properties": { + "decimalPlaces": { + "type": "string", + "nullable": true + }, + "displayAs": { + "type": "string", + "nullable": true + }, + "maximum": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "minimum": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + } + } + }, + "microsoft.graph.personOrGroupColumn": { + "title": "personOrGroupColumn", + "type": "object", + "properties": { + "allowMultipleSelection": { + "type": "boolean", + "nullable": true + }, + "chooseFromType": { + "type": "string", + "nullable": true + }, + "displayAs": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.textColumn": { + "title": "textColumn", + "type": "object", + "properties": { + "allowMultipleLines": { + "type": "boolean", + "nullable": true + }, + "appendChangesToExistingText": { + "type": "boolean", + "nullable": true + }, + "linesForEditing": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "maxLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "textType": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.columnLink": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "columnLink", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.contentType": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "contentType", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "group": { + "type": "string", + "nullable": true + }, + "hidden": { + "type": "boolean", + "nullable": true + }, + "inheritedFrom": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemReference" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "order": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.contentTypeOrder" + } + ], + "nullable": true + }, + "parentId": { + "type": "string", + "nullable": true + }, + "readOnly": { + "type": "boolean", + "nullable": true + }, + "sealed": { + "type": "boolean", + "nullable": true + }, + "columnLinks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnLink" + } + } + } + } + ] + }, + "microsoft.graph.contentTypeOrder": { + "title": "contentTypeOrder", + "type": "object", + "properties": { + "default": { + "type": "boolean", + "nullable": true + }, + "position": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.quota": { + "title": "quota", + "type": "object", + "properties": { + "deleted": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "remaining": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "state": { + "type": "string", + "nullable": true + }, + "total": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "used": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "microsoft.graph.systemFacet": { + "title": "systemFacet", + "type": "object" + }, + "microsoft.graph.driveItem": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + }, + { + "title": "driveItem", + "type": "object", + "properties": { + "audio": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.audio" + } + ], + "nullable": true + }, + "content": { + "type": "string", + "format": "base64url", + "nullable": true + }, + "cTag": { + "type": "string", + "nullable": true + }, + "deleted": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deleted" + } + ], + "nullable": true + }, + "file": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.file" + } + ], + "nullable": true + }, + "fileSystemInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileSystemInfo" + } + ], + "nullable": true + }, + "folder": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.folder" + } + ], + "nullable": true + }, + "image": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.image" + } + ], + "nullable": true + }, + "location": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.geoCoordinates" + } + ], + "nullable": true + }, + "package": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.package" + } + ], + "nullable": true + }, + "photo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.photo" + } + ], + "nullable": true + }, + "publication": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.publicationFacet" + } + ], + "nullable": true + }, + "remoteItem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.remoteItem" + } + ], + "nullable": true + }, + "root": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.root" + } + ], + "nullable": true + }, + "searchResult": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.searchResult" + } + ], + "nullable": true + }, + "shared": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.shared" + } + ], + "nullable": true + }, + "sharepointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + }, + "size": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "specialFolder": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.specialFolder" + } + ], + "nullable": true + }, + "video": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.video" + } + ], + "nullable": true + }, + "webDavUrl": { + "type": "string", + "nullable": true + }, + "children": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + }, + "listItem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + ], + "nullable": true + }, + "permissions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.permission" + } + }, + "thumbnails": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.thumbnailSet" + } + }, + "versions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItemVersion" + } + }, + "workbook": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbook" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.list": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + }, + { + "title": "list", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "list": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.listInfo" + } + ], + "nullable": true + }, + "sharepointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + }, + "system": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.systemFacet" + } + ], + "nullable": true + }, + "columns": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.columnDefinition" + } + }, + "contentTypes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.contentType" + } + }, + "drive": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.drive" + } + ], + "nullable": true + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + } + } + } + ] + }, + "microsoft.graph.audio": { + "title": "audio", + "type": "object", + "properties": { + "album": { + "type": "string", + "nullable": true + }, + "albumArtist": { + "type": "string", + "nullable": true + }, + "artist": { + "type": "string", + "nullable": true + }, + "bitrate": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "composers": { + "type": "string", + "nullable": true + }, + "copyright": { + "type": "string", + "nullable": true + }, + "disc": { + "maximum": 32767, + "minimum": -32768, + "type": "integer", + "format": "int16", + "nullable": true + }, + "discCount": { + "maximum": 32767, + "minimum": -32768, + "type": "integer", + "format": "int16", + "nullable": true + }, + "duration": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "genre": { + "type": "string", + "nullable": true + }, + "hasDrm": { + "type": "boolean", + "nullable": true + }, + "isVariableBitrate": { + "type": "boolean", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "track": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "trackCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "year": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.deleted": { + "title": "deleted", + "type": "object", + "properties": { + "state": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.file": { + "title": "file", + "type": "object", + "properties": { + "hashes": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.hashes" + } + ], + "nullable": true + }, + "mimeType": { + "type": "string", + "nullable": true + }, + "processingMetadata": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.hashes": { + "title": "hashes", + "type": "object", + "properties": { + "crc32Hash": { + "type": "string", + "nullable": true + }, + "quickXorHash": { + "type": "string", + "nullable": true + }, + "sha1Hash": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.fileSystemInfo": { + "title": "fileSystemInfo", + "type": "object", + "properties": { + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastAccessedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.folder": { + "title": "folder", + "type": "object", + "properties": { + "childCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "view": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.folderView" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.folderView": { + "title": "folderView", + "type": "object", + "properties": { + "sortBy": { + "type": "string", + "nullable": true + }, + "sortOrder": { + "type": "string", + "nullable": true + }, + "viewType": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.image": { + "title": "image", + "type": "object", + "properties": { + "height": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "width": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.geoCoordinates": { + "title": "geoCoordinates", + "type": "object", + "properties": { + "altitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "latitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "longitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + } + } + }, + "microsoft.graph.package": { + "title": "package", + "type": "object", + "properties": { + "type": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.photo": { + "title": "photo", + "type": "object", + "properties": { + "cameraMake": { + "type": "string", + "nullable": true + }, + "cameraModel": { + "type": "string", + "nullable": true + }, + "exposureDenominator": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "exposureNumerator": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "fNumber": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "focalLength": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "iso": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "takenDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.remoteItem": { + "title": "remoteItem", + "type": "object", + "properties": { + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "file": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.file" + } + ], + "nullable": true + }, + "fileSystemInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileSystemInfo" + } + ], + "nullable": true + }, + "folder": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.folder" + } + ], + "nullable": true + }, + "id": { + "type": "string", + "nullable": true + }, + "lastModifiedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "package": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.package" + } + ], + "nullable": true + }, + "parentReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemReference" + } + ], + "nullable": true + }, + "shared": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.shared" + } + ], + "nullable": true + }, + "sharepointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + }, + "size": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "specialFolder": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.specialFolder" + } + ], + "nullable": true + }, + "webDavUrl": { + "type": "string", + "nullable": true + }, + "webUrl": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.shared": { + "title": "shared", + "type": "object", + "properties": { + "owner": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "scope": { + "type": "string", + "nullable": true + }, + "sharedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "sharedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.specialFolder": { + "title": "specialFolder", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.root": { + "title": "root", + "type": "object" + }, + "microsoft.graph.searchResult": { + "title": "searchResult", + "type": "object", + "properties": { + "onClickTelemetryUrl": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.video": { + "title": "video", + "type": "object", + "properties": { + "audioBitsPerSample": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "audioChannels": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "audioFormat": { + "type": "string", + "nullable": true + }, + "audioSamplesPerSecond": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "bitrate": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "duration": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "fourCC": { + "type": "string", + "nullable": true + }, + "frameRate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "height": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "width": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.listItem": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + }, + { + "title": "listItem", + "type": "object", + "properties": { + "contentType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.contentTypeInfo" + } + ], + "nullable": true + }, + "sharepointIds": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharepointIds" + } + ], + "nullable": true + }, + "driveItem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + }, + "fields": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + ], + "nullable": true + }, + "versions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.listItemVersion" + } + } + } + } + ] + }, + "microsoft.graph.permission": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "permission", + "type": "object", + "properties": { + "grantedTo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "inheritedFrom": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.itemReference" + } + ], + "nullable": true + }, + "invitation": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharingInvitation" + } + ], + "nullable": true + }, + "link": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharingLink" + } + ], + "nullable": true + }, + "roles": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "shareId": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.thumbnailSet": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "thumbnailSet", + "type": "object", + "properties": { + "large": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.thumbnail" + } + ], + "nullable": true + }, + "medium": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.thumbnail" + } + ], + "nullable": true + }, + "small": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.thumbnail" + } + ], + "nullable": true + }, + "source": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.thumbnail" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.driveItemVersion": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItemVersion" + }, + { + "title": "driveItemVersion", + "type": "object", + "properties": { + "content": { + "type": "string", + "format": "base64url", + "nullable": true + }, + "size": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.workbook": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbook", + "type": "object", + "properties": { + "application": { + "anyOf": [ + { + "$ref": "#/components/schemas/Application" + } + ], + "nullable": true + }, + "names": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NamedItem" + } + }, + "tables": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Table" + } + }, + "worksheets": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Worksheet" + } + }, + "functions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.workbookFunctions" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.fieldValueSet": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "fieldValueSet", + "type": "object" + } + ] + }, + "microsoft.graph.listInfo": { + "title": "listInfo", + "type": "object", + "properties": { + "contentTypesEnabled": { + "type": "boolean", + "nullable": true + }, + "hidden": { + "type": "boolean", + "nullable": true + }, + "template": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.contentTypeInfo": { + "title": "contentTypeInfo", + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.listItemVersion": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItemVersion" + }, + { + "title": "listItemVersion", + "type": "object", + "properties": { + "fields": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fieldValueSet" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.sharingInvitation": { + "title": "sharingInvitation", + "type": "object", + "properties": { + "email": { + "type": "string", + "nullable": true + }, + "invitedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "redeemedBy": { + "type": "string", + "nullable": true + }, + "signInRequired": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.sharingLink": { + "title": "sharingLink", + "type": "object", + "properties": { + "application": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identity" + } + ], + "nullable": true + }, + "scope": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + }, + "webUrl": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.sharedDriveItem": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.baseItem" + }, + { + "title": "sharedDriveItem", + "type": "object", + "properties": { + "owner": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "driveItem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + }, + "list": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.list" + } + ], + "nullable": true + }, + "listItem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.listItem" + } + ], + "nullable": true + }, + "root": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.driveItem" + } + ], + "nullable": true + }, + "site": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.site" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.siteCollection": { + "title": "siteCollection", + "type": "object", + "properties": { + "hostname": { + "type": "string", + "nullable": true + }, + "root": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.root" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.thumbnail": { + "title": "thumbnail", + "type": "object", + "properties": { + "content": { + "type": "string", + "format": "base64url", + "nullable": true + }, + "height": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "sourceItemId": { + "type": "string", + "nullable": true + }, + "url": { + "type": "string", + "nullable": true + }, + "width": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.driveItemUploadableProperties": { + "title": "driveItemUploadableProperties", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "fileSystemInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileSystemInfo" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.driveRecipient": { + "title": "driveRecipient", + "type": "object", + "properties": { + "alias": { + "type": "string", + "nullable": true + }, + "email": { + "type": "string", + "nullable": true + }, + "objectId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.itemPreviewInfo": { + "title": "itemPreviewInfo", + "type": "object", + "properties": { + "getUrl": { + "type": "string", + "nullable": true + }, + "postParameters": { + "type": "string", + "nullable": true + }, + "postUrl": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.uploadSession": { + "title": "uploadSession", + "type": "object", + "properties": { + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "nextExpectedRanges": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "uploadUrl": { + "type": "string", + "nullable": true + } + } + }, + "NewChart": { + "type": "object", + "properties": { + "type": { + "type": "string" + }, + "sourceData": { + "type": "string", + "nullable": true + }, + "seriesBy": { + "type": "string" + } + } + }, + "Application": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookApplication", + "type": "object", + "properties": { + "calculationMode": { + "type": "string" + } + } + } + ] + }, + "NewNamedItem": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "reference": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + } + }, + "NamedItems": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NamedItem" + } + } + } + }, + "NamedItem": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookNamedItem", + "type": "object", + "properties": { + "comment": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "scope": { + "type": "string" + }, + "type": { + "type": "string", + "nullable": true + }, + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "visible": { + "type": "boolean" + }, + "worksheet": { + "anyOf": [ + { + "$ref": "#/components/schemas/Worksheet" + } + ], + "nullable": true + } + } + } + ] + }, + "Formula": { + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "formula": { + "type": "string", + "nullable": true + }, + "comment": { + "type": "string", + "nullable": true + } + } + }, + "Tables": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Table" + } + } + } + }, + "Table": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookTable", + "type": "object", + "properties": { + "highlightFirstColumn": { + "type": "boolean" + }, + "highlightLastColumn": { + "type": "boolean" + }, + "name": { + "type": "string", + "nullable": true + }, + "showBandedColumns": { + "type": "boolean" + }, + "showBandedRows": { + "type": "boolean" + }, + "showFilterButton": { + "type": "boolean" + }, + "showHeaders": { + "type": "boolean" + }, + "showTotals": { + "type": "boolean" + }, + "style": { + "type": "string", + "nullable": true + }, + "columns": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Column" + } + }, + "rows": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Row" + } + }, + "sort": { + "anyOf": [ + { + "$ref": "#/components/schemas/TableSort" + } + ], + "nullable": true + }, + "worksheet": { + "anyOf": [ + { + "$ref": "#/components/schemas/Worksheet" + } + ], + "nullable": true + } + } + } + ] + }, + "Worksheet": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookWorksheet", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "position": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "visibility": { + "type": "string" + }, + "charts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Chart" + } + }, + "names": { + "type": "array", + "items": { + "$ref": "#/components/schemas/NamedItem" + } + }, + "pivotTables": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PivotTable" + } + }, + "protection": { + "anyOf": [ + { + "$ref": "#/components/schemas/WorksheetProtection" + } + ], + "nullable": true + }, + "tables": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Table" + } + } + } + } + ] + }, + "CalculationType": { + "type": "object", + "properties": { + "calculationType": { + "type": "string" + } + } + }, + "microsoft.graph.workbookFunctions": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookFunctions", + "type": "object" + } + ] + }, + "SessionInfo": { + "title": "workbookSessionInfo", + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "persistChanges": { + "type": "boolean", + "nullable": true + } + } + }, + "Json": { + "title": "Json", + "type": "object" + }, + "Chart": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChart", + "type": "object", + "properties": { + "height": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "integer" + } + ], + "format": "double" + }, + "left": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "integer" + } + ], + "format": "double" + }, + "name": { + "type": "string", + "nullable": true + }, + "top": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "integer" + } + ], + "format": "double" + }, + "width": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "integer" + } + ], + "format": "double" + }, + "axes": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxes" + } + ], + "nullable": true + }, + "dataLabels": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartDataLabels" + } + ], + "nullable": true + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAreaFormat" + } + ], + "nullable": true + }, + "legend": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartLegend" + } + ], + "nullable": true + }, + "series": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChartSeries" + } + }, + "title": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartTitle" + } + ], + "nullable": true + }, + "worksheet": { + "anyOf": [ + { + "$ref": "#/components/schemas/Worksheet" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartAxes": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartAxes", + "type": "object", + "properties": { + "categoryAxis": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxis" + } + ], + "nullable": true + }, + "seriesAxis": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxis" + } + ], + "nullable": true + }, + "valueAxis": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxis" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartDataLabels": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartDataLabels", + "type": "object", + "properties": { + "position": { + "type": "string", + "nullable": true + }, + "separator": { + "type": "string", + "nullable": true + }, + "showBubbleSize": { + "type": "boolean", + "nullable": true + }, + "showCategoryName": { + "type": "boolean", + "nullable": true + }, + "showLegendKey": { + "type": "boolean", + "nullable": true + }, + "showPercentage": { + "type": "boolean", + "nullable": true + }, + "showSeriesName": { + "type": "boolean", + "nullable": true + }, + "showValue": { + "type": "boolean", + "nullable": true + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartDataLabelFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartAreaFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartAreaFormat", + "type": "object", + "properties": { + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFill" + } + ], + "nullable": true + }, + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFont" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartLegend": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartLegend", + "type": "object", + "properties": { + "overlay": { + "type": "boolean", + "nullable": true + }, + "position": { + "type": "string", + "nullable": true + }, + "visible": { + "type": "boolean" + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartLegendFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "SetData": { + "type": "object", + "properties": { + "sourceData": { + "type": "string", + "nullable": true + }, + "seriesBy": { + "type": "string" + } + } + }, + "Position": { + "type": "object", + "properties": { + "startCell": { + "type": "string", + "nullable": true + }, + "endCell": { + "type": "string", + "nullable": true + } + } + }, + "ChartSeriesCollection": { + "title": "Collection of ChartSeries", + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChartSeries" + } + } + } + }, + "ChartSeries": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartSeries", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartSeriesFormat" + } + ], + "nullable": true + }, + "points": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChartPoint" + } + } + } + } + ] + }, + "ChartTitle": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartTitle", + "type": "object", + "properties": { + "overlay": { + "type": "boolean", + "nullable": true + }, + "text": { + "type": "string", + "nullable": true + }, + "visible": { + "type": "boolean" + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartTitleFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartFill": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartFill", + "type": "object" + } + ] + }, + "Image": { + "type": "object", + "properties": { + "value": { + "type": "string", + "nullable": true + } + } + }, + "ChartFont": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartFont", + "type": "object", + "properties": { + "bold": { + "type": "boolean", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "italic": { + "type": "boolean", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "size": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "underline": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "Charts": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "ChartAxis": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartAxis", + "type": "object", + "properties": { + "majorUnit": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "maximum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "minimum": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "minorUnit": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxisFormat" + } + ], + "nullable": true + }, + "majorGridlines": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartGridlines" + } + ], + "nullable": true + }, + "minorGridlines": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartGridlines" + } + ], + "nullable": true + }, + "title": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxisTitle" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartAxisFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartAxisFormat", + "type": "object", + "properties": { + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFont" + } + ], + "nullable": true + }, + "line": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartLineFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartGridlines": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartGridlines", + "type": "object", + "properties": { + "visible": { + "type": "boolean" + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartGridlinesFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartAxisTitle": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartAxisTitle", + "type": "object", + "properties": { + "text": { + "type": "string", + "nullable": true + }, + "visible": { + "type": "boolean" + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartAxisTitleFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartLineFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartLineFormat", + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "ChartAxisTitleFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartAxisTitleFormat", + "type": "object", + "properties": { + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFont" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartDataLabelFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartDataLabelFormat", + "type": "object", + "properties": { + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFill" + } + ], + "nullable": true + }, + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFont" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartGridlinesFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartGridlinesFormat", + "type": "object", + "properties": { + "line": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartLineFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartLegendFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartLegendFormat", + "type": "object", + "properties": { + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFill" + } + ], + "nullable": true + }, + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFont" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartPoint": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartPoint", + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartPointFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartPointFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartPointFormat", + "type": "object", + "properties": { + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFill" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartSeriesFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartSeriesFormat", + "type": "object", + "properties": { + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFill" + } + ], + "nullable": true + }, + "line": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartLineFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "ChartTitleFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookChartTitleFormat", + "type": "object", + "properties": { + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFill" + } + ], + "nullable": true + }, + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/ChartFont" + } + ], + "nullable": true + } + } + } + ] + }, + "Filter": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookFilter", + "type": "object", + "properties": { + "criteria": { + "anyOf": [ + { + "$ref": "#/components/schemas/FilterCriteria" + } + ], + "nullable": true + } + } + } + ] + }, + "FilterCriteria": { + "title": "workbookFilterCriteria", + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + }, + "criterion1": { + "type": "string", + "nullable": true + }, + "criterion2": { + "type": "string", + "nullable": true + }, + "dynamicCriteria": { + "type": "string" + }, + "filterOn": { + "type": "string" + }, + "icon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Icon" + } + ], + "nullable": true + }, + "operator": { + "type": "string" + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + }, + "Icon": { + "title": "workbookIcon", + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32" + }, + "set": { + "type": "string" + } + } + }, + "FormatProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookFormatProtection", + "type": "object", + "properties": { + "formulaHidden": { + "type": "boolean", + "nullable": true + }, + "locked": { + "type": "boolean", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.workbookFunctionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookFunctionResult", + "type": "object", + "properties": { + "error": { + "type": "string", + "nullable": true + }, + "value": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + } + ] + }, + "PivotTable": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookPivotTable", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "worksheet": { + "anyOf": [ + { + "$ref": "#/components/schemas/Worksheet" + } + ], + "nullable": true + } + } + } + ] + }, + "Shift": { + "type": "object", + "properties": { + "shift": { + "type": "string" + } + } + }, + "ApplyTo": { + "type": "object", + "properties": { + "applyTo": { + "type": "string" + } + } + }, + "Across": { + "type": "object", + "properties": { + "across": { + "type": "boolean", + "default": false + } + } + }, + "Range": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRange", + "type": "object", + "properties": { + "address": { + "type": "string", + "nullable": true + }, + "addressLocal": { + "type": "string", + "nullable": true + }, + "cellCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "columnCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "columnHidden": { + "type": "boolean", + "nullable": true + }, + "columnIndex": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "formulas": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "formulasLocal": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "formulasR1C1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "hidden": { + "type": "boolean", + "nullable": true + }, + "numberFormat": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rowCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "rowHidden": { + "type": "boolean", + "nullable": true + }, + "rowIndex": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "valueTypes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "format": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeFormat" + } + ], + "nullable": true + }, + "sort": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeSort" + } + ], + "nullable": true + }, + "worksheet": { + "anyOf": [ + { + "$ref": "#/components/schemas/Worksheet" + } + ], + "nullable": true + } + } + } + ] + }, + "RangeFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRangeFormat", + "type": "object", + "properties": { + "columnWidth": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "horizontalAlignment": { + "type": "string", + "nullable": true + }, + "rowHeight": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "verticalAlignment": { + "type": "string", + "nullable": true + }, + "wrapText": { + "type": "boolean", + "nullable": true + }, + "borders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RangeBorder" + } + }, + "fill": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeFill" + } + ], + "nullable": true + }, + "font": { + "anyOf": [ + { + "$ref": "#/components/schemas/RangeFont" + } + ], + "nullable": true + }, + "protection": { + "anyOf": [ + { + "$ref": "#/components/schemas/FormatProtection" + } + ], + "nullable": true + } + } + } + ] + }, + "RangeSort": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRangeSort", + "type": "object" + } + ] + }, + "RangeBorder": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRangeBorder", + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + }, + "sideIndex": { + "type": "string", + "nullable": true + }, + "style": { + "type": "string", + "nullable": true + }, + "weight": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "RangeFill": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRangeFill", + "type": "object", + "properties": { + "color": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "RangeFont": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRangeFont", + "type": "object", + "properties": { + "bold": { + "type": "boolean", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "italic": { + "type": "boolean", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "size": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double", + "nullable": true + }, + "underline": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "RangeView": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookRangeView", + "type": "object", + "properties": { + "cellAddresses": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "columnCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "formulas": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "formulasLocal": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "formulasR1C1": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "numberFormat": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rowCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "text": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "valueTypes": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "values": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + }, + "rows": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RangeView" + } + } + } + } + ] + }, + "Column": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookTableColumn", + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "name": { + "type": "string", + "nullable": true + }, + "values": { + "type": "array", + "description": "The values in the table row", + "items": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "number", + "nullable": true + } + ] + } + } + }, + "filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/Filter" + } + ], + "nullable": true + } + } + } + ] + }, + "NewRow": { + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "values": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "number", + "nullable": true + }, + { + "nullable": true + } + ] + } + } + } + }, + "Columns": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Column" + } + } + } + }, + "NewTable": { + "type": "object", + "properties": { + "address": { + "type": "string", + "nullable": true + }, + "hasHeaders": { + "type": "boolean", + "default": false + } + } + }, + "Rows": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Row" + } + } + } + }, + "Row": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookTableRow", + "type": "object", + "properties": { + "index": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "values": { + "type": "array", + "description": "The values in the table row", + "items": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "number", + "nullable": true + } + ] + } + } + } + } + } + ] + }, + "TableSort": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookTableSort", + "type": "object", + "properties": { + "fields": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/SortField" + } + ], + "nullable": true + } + }, + "matchCase": { + "type": "boolean" + }, + "method": { + "type": "string" + } + } + } + ] + }, + "SortField": { + "title": "workbookSortField", + "type": "object", + "properties": { + "ascending": { + "type": "boolean" + }, + "color": { + "type": "string", + "nullable": true + }, + "dataOption": { + "type": "string" + }, + "icon": { + "anyOf": [ + { + "$ref": "#/components/schemas/Icon" + } + ], + "nullable": true + }, + "key": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "sortOn": { + "type": "string" + } + } + }, + "WorksheetProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "workbookWorksheetProtection", + "type": "object", + "properties": { + "options": { + "anyOf": [ + { + "$ref": "#/components/schemas/WorksheetProtectionOptions" + } + ], + "nullable": true + }, + "protected": { + "type": "boolean" + } + } + } + ] + }, + "WorksheetProtectionOptions": { + "title": "workbookWorksheetProtectionOptions", + "type": "object", + "properties": { + "allowAutoFilter": { + "type": "boolean" + }, + "allowDeleteColumns": { + "type": "boolean" + }, + "allowDeleteRows": { + "type": "boolean" + }, + "allowFormatCells": { + "type": "boolean" + }, + "allowFormatColumns": { + "type": "boolean" + }, + "allowFormatRows": { + "type": "boolean" + }, + "allowInsertColumns": { + "type": "boolean" + }, + "allowInsertHyperlinks": { + "type": "boolean" + }, + "allowInsertRows": { + "type": "boolean" + }, + "allowPivotTables": { + "type": "boolean" + }, + "allowSort": { + "type": "boolean" + } + } + }, + "FilterDatetime": { + "title": "workbookFilterDatetime", + "type": "object", + "properties": { + "date": { + "type": "string", + "nullable": true + }, + "specificity": { + "type": "string" + } + } + }, + "RangeReference": { + "title": "workbookRangeReference", + "type": "object", + "properties": { + "address": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.subscription": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "subscription", + "type": "object", + "properties": { + "resource": { + "type": "string" + }, + "changeType": { + "type": "string" + }, + "clientState": { + "type": "string", + "nullable": true + }, + "notificationUrl": { + "type": "string" + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "applicationId": { + "type": "string", + "nullable": true + }, + "creatorId": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.invitation": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "invitation", + "type": "object", + "properties": { + "invitedUserDisplayName": { + "type": "string", + "nullable": true + }, + "invitedUserType": { + "type": "string", + "nullable": true + }, + "invitedUserEmailAddress": { + "type": "string" + }, + "invitedUserMessageInfo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.invitedUserMessageInfo" + } + ], + "nullable": true + }, + "sendInvitationMessage": { + "type": "boolean", + "nullable": true + }, + "inviteRedirectUrl": { + "type": "string" + }, + "inviteRedeemUrl": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "invitedUser": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.invitedUserMessageInfo": { + "title": "invitedUserMessageInfo", + "type": "object", + "properties": { + "ccRecipients": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recipient" + } + ], + "nullable": true + } + }, + "messageLanguage": { + "type": "string", + "nullable": true + }, + "customizedMessageBody": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.plannerTask": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerTask", + "type": "object", + "properties": { + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "planId": { + "type": "string", + "nullable": true + }, + "bucketId": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string" + }, + "orderHint": { + "type": "string", + "nullable": true + }, + "assigneePriority": { + "type": "string", + "nullable": true + }, + "percentComplete": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "startDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "dueDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "hasDescription": { + "type": "boolean", + "nullable": true + }, + "previewType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerPreviewType" + } + ], + "nullable": true + }, + "completedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "completedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "referenceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "checklistItemCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "activeChecklistItemCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "appliedCategories": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerAppliedCategories" + } + ], + "nullable": true + }, + "assignments": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerAssignments" + } + ], + "nullable": true + }, + "conversationThreadId": { + "type": "string", + "nullable": true + }, + "details": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerTaskDetails" + } + ], + "nullable": true + }, + "assignedToTaskBoardFormat": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat" + } + ], + "nullable": true + }, + "progressTaskBoardFormat": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat" + } + ], + "nullable": true + }, + "bucketTaskBoardFormat": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerPlan": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerPlan", + "type": "object", + "properties": { + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "owner": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string" + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + }, + "buckets": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + }, + "details": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerPlanDetails" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.planner": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "planner", + "type": "object", + "properties": { + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + }, + "plans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerPlan" + } + }, + "buckets": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerBucket" + } + } + } + } + ] + }, + "microsoft.graph.plannerBucket": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerBucket", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "planId": { + "type": "string", + "nullable": true + }, + "orderHint": { + "type": "string", + "nullable": true + }, + "tasks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.plannerTask" + } + } + } + } + ] + }, + "microsoft.graph.plannerAppliedCategories": { + "title": "plannerAppliedCategories", + "type": "object" + }, + "microsoft.graph.plannerAssignments": { + "title": "plannerAssignments", + "type": "object" + }, + "microsoft.graph.plannerTaskDetails": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerTaskDetails", + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "previewType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerPreviewType" + } + ], + "nullable": true + }, + "references": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerExternalReferences" + } + ], + "nullable": true + }, + "checklist": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerChecklistItems" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerAssignedToTaskBoardTaskFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerAssignedToTaskBoardTaskFormat", + "type": "object", + "properties": { + "unassignedOrderHint": { + "type": "string", + "nullable": true + }, + "orderHintsByAssignee": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerOrderHintsByAssignee" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerProgressTaskBoardTaskFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerProgressTaskBoardTaskFormat", + "type": "object", + "properties": { + "orderHint": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerBucketTaskBoardTaskFormat": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerBucketTaskBoardTaskFormat", + "type": "object", + "properties": { + "orderHint": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerPlanDetails": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "plannerPlanDetails", + "type": "object", + "properties": { + "sharedWith": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerUserIds" + } + ], + "nullable": true + }, + "categoryDescriptions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.plannerCategoryDescriptions" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.plannerExternalReference": { + "title": "plannerExternalReference", + "type": "object", + "properties": { + "alias": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + }, + "previewPriority": { + "type": "string", + "nullable": true + }, + "lastModifiedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.plannerChecklistItem": { + "title": "plannerChecklistItem", + "type": "object", + "properties": { + "isChecked": { + "type": "boolean", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "orderHint": { + "type": "string", + "nullable": true + }, + "lastModifiedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.plannerAssignment": { + "title": "plannerAssignment", + "type": "object", + "properties": { + "assignedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "assignedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "orderHint": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.plannerExternalReferences": { + "title": "plannerExternalReferences", + "type": "object" + }, + "microsoft.graph.plannerChecklistItems": { + "title": "plannerChecklistItems", + "type": "object" + }, + "microsoft.graph.plannerOrderHintsByAssignee": { + "title": "plannerOrderHintsByAssignee", + "type": "object" + }, + "microsoft.graph.plannerUserIds": { + "title": "plannerUserIds", + "type": "object" + }, + "microsoft.graph.plannerCategoryDescriptions": { + "title": "plannerCategoryDescriptions", + "type": "object", + "properties": { + "category1": { + "type": "string", + "nullable": true + }, + "category2": { + "type": "string", + "nullable": true + }, + "category3": { + "type": "string", + "nullable": true + }, + "category4": { + "type": "string", + "nullable": true + }, + "category5": { + "type": "string", + "nullable": true + }, + "category6": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.onenoteEntityBaseModel": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "onenoteEntityBaseModel", + "type": "object", + "properties": { + "self": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.onenoteEntitySchemaObjectModel": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntityBaseModel" + }, + { + "title": "onenoteEntitySchemaObjectModel", + "type": "object", + "properties": { + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.onenoteEntityHierarchyModel": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel" + }, + { + "title": "onenoteEntityHierarchyModel", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.notebook": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel" + }, + { + "title": "notebook", + "type": "object", + "properties": { + "isDefault": { + "type": "boolean", + "nullable": true + }, + "userRole": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteUserRole" + } + ], + "nullable": true + }, + "isShared": { + "type": "boolean", + "nullable": true + }, + "sectionsUrl": { + "type": "string", + "nullable": true + }, + "sectionGroupsUrl": { + "type": "string", + "nullable": true + }, + "links": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.notebookLinks" + } + ], + "nullable": true + }, + "sections": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + }, + "sectionGroups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + ] + }, + "microsoft.graph.onenoteSection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel" + }, + { + "title": "onenoteSection", + "type": "object", + "properties": { + "isDefault": { + "type": "boolean", + "nullable": true + }, + "links": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sectionLinks" + } + ], + "nullable": true + }, + "pagesUrl": { + "type": "string", + "nullable": true + }, + "parentNotebook": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + ], + "nullable": true + }, + "parentSectionGroup": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + ], + "nullable": true + }, + "pages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenotePage" + } + } + } + } + ] + }, + "microsoft.graph.sectionGroup": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel" + }, + { + "title": "sectionGroup", + "type": "object", + "properties": { + "sectionsUrl": { + "type": "string", + "nullable": true + }, + "sectionGroupsUrl": { + "type": "string", + "nullable": true + }, + "parentNotebook": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + ], + "nullable": true + }, + "parentSectionGroup": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + ], + "nullable": true + }, + "sections": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + }, + "sectionGroups": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.sectionGroup" + } + } + } + } + ] + }, + "microsoft.graph.onenotePage": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel" + }, + { + "title": "onenotePage", + "type": "object", + "properties": { + "title": { + "type": "string", + "nullable": true + }, + "createdByAppId": { + "type": "string", + "nullable": true + }, + "links": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.pageLinks" + } + ], + "nullable": true + }, + "contentUrl": { + "type": "string", + "nullable": true + }, + "content": { + "type": "string", + "format": "base64url", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "level": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "order": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "userTags": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "parentSection": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteSection" + } + ], + "nullable": true + }, + "parentNotebook": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.notebook" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.onenoteResource": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteEntityBaseModel" + }, + { + "title": "onenoteResource", + "type": "object", + "properties": { + "content": { + "type": "string", + "format": "base64url", + "nullable": true + }, + "contentUrl": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.operation": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "operation", + "type": "object", + "properties": { + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.operationStatus" + } + ], + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastActionDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.onenoteOperation": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.operation" + }, + { + "title": "onenoteOperation", + "type": "object", + "properties": { + "resourceLocation": { + "type": "string", + "nullable": true + }, + "resourceId": { + "type": "string", + "nullable": true + }, + "error": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteOperationError" + } + ], + "nullable": true + }, + "percentComplete": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.notebookLinks": { + "title": "notebookLinks", + "type": "object", + "properties": { + "oneNoteClientUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + }, + "oneNoteWebUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.externalLink": { + "title": "externalLink", + "type": "object", + "properties": { + "href": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.sectionLinks": { + "title": "sectionLinks", + "type": "object", + "properties": { + "oneNoteClientUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + }, + "oneNoteWebUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.pageLinks": { + "title": "pageLinks", + "type": "object", + "properties": { + "oneNoteClientUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + }, + "oneNoteWebUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.onenoteOperationError": { + "title": "onenoteOperationError", + "type": "object", + "properties": { + "code": { + "type": "string", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.diagnostic": { + "title": "diagnostic", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "url": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.onenotePatchContentCommand": { + "title": "onenotePatchContentCommand", + "type": "object", + "properties": { + "action": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchActionType" + } + ] + }, + "target": { + "type": "string" + }, + "content": { + "type": "string", + "nullable": true + }, + "position": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePatchInsertPosition" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.onenotePagePreview": { + "title": "onenotePagePreview", + "type": "object", + "properties": { + "previewText": { + "type": "string", + "nullable": true + }, + "links": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenotePagePreviewLinks" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.onenotePagePreviewLinks": { + "title": "onenotePagePreviewLinks", + "type": "object", + "properties": { + "previewImageUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.recentNotebook": { + "title": "recentNotebook", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "lastAccessedTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "links": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.recentNotebookLinks" + } + ], + "nullable": true + }, + "sourceService": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onenoteSourceService" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.recentNotebookLinks": { + "title": "recentNotebookLinks", + "type": "object", + "properties": { + "oneNoteClientUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + }, + "oneNoteWebUrl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.externalLink" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.reportRoot": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "reportRoot", + "type": "object" + } + ] + }, + "microsoft.graph.report": { + "title": "report", + "type": "object", + "properties": { + "content": { + "type": "string", + "format": "base64url", + "nullable": true + } + } + }, + "microsoft.graph.administrativeUnit": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.directoryObject" + }, + { + "title": "administrativeUnit", + "type": "object" + } + ] + }, + "microsoft.graph.educationRoot": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "educationRoot", + "type": "object", + "properties": { + "classes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + }, + "schools": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + }, + "users": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + }, + "me": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.educationClass": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "educationClass", + "type": "object", + "properties": { + "displayName": { + "type": "string" + }, + "mailNickname": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "classCode": { + "type": "string", + "nullable": true + }, + "externalName": { + "type": "string", + "nullable": true + }, + "externalId": { + "type": "string", + "nullable": true + }, + "externalSource": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationExternalSource" + } + ], + "nullable": true + }, + "term": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationTerm" + } + ], + "nullable": true + }, + "schools": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + }, + "members": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + }, + "teachers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + }, + "group": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.group" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.educationOrganization": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "educationOrganization", + "type": "object", + "properties": { + "displayName": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "externalSource": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationExternalSource" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.educationSchool": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationOrganization" + }, + { + "title": "educationSchool", + "type": "object", + "properties": { + "principalEmail": { + "type": "string", + "nullable": true + }, + "principalName": { + "type": "string", + "nullable": true + }, + "externalPrincipalId": { + "type": "string", + "nullable": true + }, + "lowestGrade": { + "type": "string", + "nullable": true + }, + "highestGrade": { + "type": "string", + "nullable": true + }, + "schoolNumber": { + "type": "string", + "nullable": true + }, + "externalId": { + "type": "string", + "nullable": true + }, + "phone": { + "type": "string", + "nullable": true + }, + "fax": { + "type": "string", + "nullable": true + }, + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "address": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "classes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + }, + "users": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationUser" + } + } + } + } + ] + }, + "microsoft.graph.educationUser": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "educationUser", + "type": "object", + "properties": { + "primaryRole": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationUserRole" + } + ] + }, + "middleName": { + "type": "string", + "nullable": true + }, + "externalSource": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationExternalSource" + } + ], + "nullable": true + }, + "residenceAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "mailingAddress": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.physicalAddress" + } + ], + "nullable": true + }, + "student": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationStudent" + } + ], + "nullable": true + }, + "teacher": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationTeacher" + } + ], + "nullable": true + }, + "createdBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.identitySet" + } + ], + "nullable": true + }, + "relatedContacts": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationRelatedContact" + } + ], + "nullable": true + } + }, + "accountEnabled": { + "type": "boolean", + "nullable": true + }, + "assignedLicenses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedLicense" + } + }, + "assignedPlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.assignedPlan" + } + }, + "businessPhones": { + "type": "array", + "items": { + "type": "string" + } + }, + "department": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + }, + "givenName": { + "type": "string", + "nullable": true + }, + "mail": { + "type": "string", + "nullable": true + }, + "mailNickname": { + "type": "string", + "nullable": true + }, + "mobilePhone": { + "type": "string", + "nullable": true + }, + "passwordPolicies": { + "type": "string", + "nullable": true + }, + "passwordProfile": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.passwordProfile" + } + ], + "nullable": true + }, + "officeLocation": { + "type": "string", + "nullable": true + }, + "preferredLanguage": { + "type": "string", + "nullable": true + }, + "provisionedPlans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.provisionedPlan" + } + }, + "refreshTokensValidFromDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "showInAddressList": { + "type": "boolean", + "nullable": true + }, + "surname": { + "type": "string", + "nullable": true + }, + "usageLocation": { + "type": "string", + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "nullable": true + }, + "userType": { + "type": "string", + "nullable": true + }, + "schools": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationSchool" + } + }, + "classes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.educationClass" + } + }, + "user": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.user" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.educationStudent": { + "title": "educationStudent", + "type": "object", + "properties": { + "graduationYear": { + "type": "string", + "nullable": true + }, + "grade": { + "type": "string", + "nullable": true + }, + "birthDate": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date", + "nullable": true + }, + "gender": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationGender" + } + ], + "nullable": true + }, + "studentNumber": { + "type": "string", + "nullable": true + }, + "externalId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.educationRelatedContact": { + "title": "educationRelatedContact", + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string" + }, + "emailAddress": { + "type": "string", + "nullable": true + }, + "mobilePhone": { + "type": "string", + "nullable": true + }, + "relationship": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.educationContactRelationship" + } + ] + }, + "accessConsent": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.educationTeacher": { + "title": "educationTeacher", + "type": "object", + "properties": { + "teacherNumber": { + "type": "string", + "nullable": true + }, + "externalId": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.educationTerm": { + "title": "educationTerm", + "type": "object", + "properties": { + "externalId": { + "type": "string", + "nullable": true + }, + "startDate": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date", + "nullable": true + }, + "endDate": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$", + "type": "string", + "format": "date", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.deviceAppManagement": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceAppManagement", + "type": "object", + "properties": { + "microsoftStoreForBusinessLastSuccessfulSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The last time the apps from the Microsoft Store for Business were synced successfully for the account.", + "format": "date-time" + }, + "isEnabledForMicrosoftStoreForBusiness": { + "type": "boolean", + "description": "Whether the account is enabled for syncing applications from the Microsoft Store for Business." + }, + "microsoftStoreForBusinessLanguage": { + "type": "string", + "description": "The locale information used to sync applications from the Microsoft Store for Business. Cultures that are specific to a country/region. The names of these cultures follow RFC 4646 (Windows Vista and later). The format is -, where is a lowercase two-letter code derived from ISO 639-1 and is an uppercase two-letter code derived from ISO 3166. For example, en-US for English (United States) is a specific culture.", + "nullable": true + }, + "microsoftStoreForBusinessLastCompletedApplicationSyncTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The last time an application sync from the Microsoft Store for Business was completed.", + "format": "date-time" + }, + "mobileApps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + "description": "The mobile apps." + }, + "mobileAppCategories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + }, + "description": "The mobile app categories." + }, + "mobileAppConfigurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + }, + "description": "The Managed Device Mobile Application Configurations." + }, + "vppTokens": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.vppToken" + }, + "description": "List of Vpp tokens for this organization." + }, + "managedAppPolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + }, + "description": "Managed app policies." + }, + "iosManagedAppProtections": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosManagedAppProtection" + }, + "description": "iOS managed app policies." + }, + "androidManagedAppProtections": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.androidManagedAppProtection" + }, + "description": "Android managed app policies." + }, + "defaultManagedAppProtections": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.defaultManagedAppProtection" + }, + "description": "Default managed app policies." + }, + "targetedManagedAppConfigurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration" + }, + "description": "Targeted managed app configurations." + }, + "mdmWindowsInformationProtectionPolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy" + }, + "description": "Windows information protection for apps running on devices which are MDM enrolled." + }, + "windowsInformationProtectionPolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy" + }, + "description": "Windows information protection for apps running on devices which are not MDM enrolled." + }, + "managedAppRegistrations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + }, + "description": "The managed app registrations." + }, + "managedAppStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + }, + "description": "The managed app statuses." + }, + "managedEBooks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + }, + "description": "The Managed eBook." + } + }, + "description": "Singleton entity that acts as a container for all device app management functionality." + } + ] + }, + "microsoft.graph.mobileApp": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mobileApp", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "The admin provided or imported title of the app.", + "nullable": true + }, + "description": { + "type": "string", + "description": "The description of the app.", + "nullable": true + }, + "publisher": { + "type": "string", + "description": "The publisher of the app.", + "nullable": true + }, + "largeIcon": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mimeContent" + } + ], + "description": "The large icon, to be displayed in the app details and used for upload of the icon.", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time the app was created.", + "format": "date-time" + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time the app was last modified.", + "format": "date-time" + }, + "isFeatured": { + "type": "boolean", + "description": "The value indicating whether the app is marked as featured by the admin." + }, + "privacyInformationUrl": { + "type": "string", + "description": "The privacy statement Url.", + "nullable": true + }, + "informationUrl": { + "type": "string", + "description": "The more information Url.", + "nullable": true + }, + "owner": { + "type": "string", + "description": "The owner of the app.", + "nullable": true + }, + "developer": { + "type": "string", + "description": "The developer of the app.", + "nullable": true + }, + "notes": { + "type": "string", + "description": "Notes for the app.", + "nullable": true + }, + "publishingState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppPublishingState" + } + ], + "description": "The publishing state for the app. The app cannot be assigned unless the app is published." + }, + "categories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppCategory" + }, + "description": "The list of categories for this app." + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignment" + }, + "description": "The list of group assignments for this mobile app." + } + }, + "description": "An abstract class containing the base properties for Intune mobile apps." + } + ] + }, + "microsoft.graph.mobileAppCategory": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mobileAppCategory", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "The name of the app category.", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time the mobileAppCategory was last modified.", + "format": "date-time" + } + }, + "description": "Contains properties for a single Intune app category." + } + ] + }, + "microsoft.graph.managedDeviceMobileAppConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceMobileAppConfiguration", + "type": "object", + "properties": { + "targetedMobileApps": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "the associated app." + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was created.", + "format": "date-time" + }, + "description": { + "type": "string", + "description": "Admin provided description of the Device Configuration.", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was last modified.", + "format": "date-time" + }, + "displayName": { + "type": "string", + "description": "Admin provided name of the device configuration." + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the device configuration." + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + }, + "description": "The list of group assignemenets for app configration." + }, + "deviceStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + }, + "description": "List of ManagedDeviceMobileAppConfigurationDeviceStatus." + }, + "userStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + }, + "description": "List of ManagedDeviceMobileAppConfigurationUserStatus." + }, + "deviceStatusSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary" + } + ], + "description": "App configuration device status summary.", + "nullable": true + }, + "userStatusSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserSummary" + } + ], + "description": "App configuration user status summary.", + "nullable": true + } + }, + "description": "An abstract class for Mobile app configuration for enrolled devices." + } + ] + }, + "microsoft.graph.vppToken": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "vppToken", + "type": "object", + "properties": { + "organizationName": { + "type": "string", + "description": "The organization associated with the Apple Volume Purchase Program Token", + "nullable": true + }, + "vppTokenAccountType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vppTokenAccountType" + } + ], + "description": "The type of volume purchase program which the given Apple Volume Purchase Program Token is associated with. Possible values are: `business`, `education`." + }, + "appleId": { + "type": "string", + "description": "The apple Id associated with the given Apple Volume Purchase Program Token.", + "nullable": true + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The expiration date time of the Apple Volume Purchase Program Token.", + "format": "date-time" + }, + "lastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The last time when an application sync was done with the Apple volume purchase program service using the the Apple Volume Purchase Program Token.", + "format": "date-time" + }, + "token": { + "type": "string", + "description": "The Apple Volume Purchase Program Token string downloaded from the Apple Volume Purchase Program.", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modification date time associated with the Apple Volume Purchase Program Token.", + "format": "date-time" + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vppTokenState" + } + ], + "description": "Current state of the Apple Volume Purchase Program Token. Possible values are: `unknown`, `valid`, `expired`, `invalid`, `assignedToExternalMDM`." + }, + "lastSyncStatus": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vppTokenSyncStatus" + } + ], + "description": "Current sync status of the last application sync which was triggered using the Apple Volume Purchase Program Token. Possible values are: `none`, `inProgress`, `completed`, `failed`." + }, + "automaticallyUpdateApps": { + "type": "boolean", + "description": "Whether or not apps for the VPP token will be automatically updated." + }, + "countryOrRegion": { + "type": "string", + "description": "Whether or not apps for the VPP token will be automatically updated.", + "nullable": true + } + }, + "description": "You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens." + } + ] + }, + "microsoft.graph.managedAppPolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedAppPolicy", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Policy display name." + }, + "description": { + "type": "string", + "description": "The policy's description.", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time the policy was created.", + "format": "date-time" + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last time the policy was modified.", + "format": "date-time" + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + } + }, + "description": "The ManagedAppPolicy resource represents a base type for platform specific policies." + } + ] + }, + "microsoft.graph.managedAppProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + }, + { + "title": "managedAppProtection", + "type": "object", + "properties": { + "periodOfflineBeforeAccessCheck": { + "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", + "type": "string", + "description": "The period after which access is checked when the device is not connected to the internet.", + "format": "duration" + }, + "periodOnlineBeforeAccessCheck": { + "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", + "type": "string", + "description": "The period after which access is checked when the device is connected to the internet.", + "format": "duration" + }, + "allowedInboundDataTransferSources": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDataTransferLevel" + } + ], + "description": "Sources from which data is allowed to be transferred." + }, + "allowedOutboundDataTransferDestinations": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDataTransferLevel" + } + ], + "description": "Destinations to which data is allowed to be transferred." + }, + "organizationalCredentialsRequired": { + "type": "boolean", + "description": "Indicates whether organizational credentials are required for app use." + }, + "allowedOutboundClipboardSharingLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppClipboardSharingLevel" + } + ], + "description": "The level to which the clipboard may be shared between apps on the managed device." + }, + "dataBackupBlocked": { + "type": "boolean", + "description": "Indicates whether the backup of a managed app's data is blocked." + }, + "deviceComplianceRequired": { + "type": "boolean", + "description": "Indicates whether device compliance is required." + }, + "managedBrowserToOpenLinksRequired": { + "type": "boolean", + "description": "Indicates whether internet links should be opened in the managed browser app." + }, + "saveAsBlocked": { + "type": "boolean", + "description": "Indicates whether users may use the \"Save As\" menu item to save a copy of protected files." + }, + "periodOfflineBeforeWipeIsEnforced": { + "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", + "type": "string", + "description": "The amount of time an app is allowed to remain disconnected from the internet before all managed data it is wiped.", + "format": "duration" + }, + "pinRequired": { + "type": "boolean", + "description": "Indicates whether an app-level pin is required." + }, + "maximumPinRetries": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped." + }, + "simplePinBlocked": { + "type": "boolean", + "description": "Indicates whether simplePin is blocked." + }, + "minimumPinLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum pin length required for an app-level pin if PinRequired is set to True" + }, + "pinCharacterSet": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPinCharacterSet" + } + ], + "description": "Character set which may be used for an app-level pin if PinRequired is set to True." + }, + "periodBeforePinReset": { + "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", + "type": "string", + "description": "TimePeriod before the all-level pin must be reset if PinRequired is set to True.", + "format": "duration" + }, + "allowedDataStorageLocations": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDataStorageLocation" + } + ] + }, + "description": "Data storage locations where a user may store managed data." + }, + "contactSyncBlocked": { + "type": "boolean", + "description": "Indicates whether contacts can be synced to the user's device." + }, + "printBlocked": { + "type": "boolean", + "description": "Indicates whether printing is allowed from managed apps." + }, + "fingerprintBlocked": { + "type": "boolean", + "description": "Indicates whether use of the fingerprint reader is allowed in place of a pin if PinRequired is set to True." + }, + "disableAppPinIfDevicePinIsSet": { + "type": "boolean", + "description": "Indicates whether use of the app pin is required if the device pin is set." + }, + "minimumRequiredOsVersion": { + "type": "string", + "description": "Versions less than the specified version will block the managed app from accessing company data.", + "nullable": true + }, + "minimumWarningOsVersion": { + "type": "string", + "description": "Versions less than the specified version will result in warning message on the managed app from accessing company data.", + "nullable": true + }, + "minimumRequiredAppVersion": { + "type": "string", + "description": "Versions less than the specified version will block the managed app from accessing company data.", + "nullable": true + }, + "minimumWarningAppVersion": { + "type": "string", + "description": "Versions less than the specified version will result in warning message on the managed app.", + "nullable": true + } + }, + "description": "Policy used to configure detailed management settings for a specified set of apps" + } + ] + }, + "microsoft.graph.targetedManagedAppProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppProtection" + }, + { + "title": "targetedManagedAppProtection", + "type": "object", + "properties": { + "isAssigned": { + "type": "boolean", + "description": "Indicates if the policy is deployed to any inclusion groups or not." + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + }, + "description": "Navigation property to list of inclusion and exclusion groups to which the policy is deployed." + } + }, + "description": "Policy used to configure detailed management settings targeted to specific security groups" + } + ] + }, + "microsoft.graph.iosManagedAppProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppProtection" + }, + { + "title": "iosManagedAppProtection", + "type": "object", + "properties": { + "appDataEncryptionType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDataEncryptionType" + } + ], + "description": "Type of encryption which should be used for data in a managed app." + }, + "minimumRequiredSdkVersion": { + "type": "string", + "description": "Versions less than the specified version will block the managed app from accessing company data.", + "nullable": true + }, + "deployedAppCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Count of apps to which the current policy is deployed." + }, + "faceIdBlocked": { + "type": "boolean", + "description": "Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True." + }, + "apps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + }, + "description": "List of apps to which the policy is deployed." + }, + "deploymentSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + ], + "description": "Navigation property to deployment summary of the configuration.", + "nullable": true + } + }, + "description": "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on an iOS device" + } + ] + }, + "microsoft.graph.androidManagedAppProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppProtection" + }, + { + "title": "androidManagedAppProtection", + "type": "object", + "properties": { + "screenCaptureBlocked": { + "type": "boolean", + "description": "Indicates whether a managed user can take screen captures of managed apps" + }, + "disableAppEncryptionIfDeviceEncryptionIsEnabled": { + "type": "boolean", + "description": "When this setting is enabled, app level encryption is disabled if device level encryption is enabled" + }, + "encryptAppData": { + "type": "boolean", + "description": "Indicates whether application data for managed apps should be encrypted" + }, + "deployedAppCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Count of apps to which the current policy is deployed." + }, + "minimumRequiredPatchVersion": { + "type": "string", + "description": "Define the oldest required Android security patch level a user can have to gain secure access to the app.", + "nullable": true + }, + "minimumWarningPatchVersion": { + "type": "string", + "description": "Define the oldest recommended Android security patch level a user can have for secure access to the app.", + "nullable": true + }, + "apps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + }, + "description": "List of apps to which the policy is deployed." + }, + "deploymentSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + ], + "description": "Navigation property to deployment summary of the configuration.", + "nullable": true + } + }, + "description": "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on an Android device" + } + ] + }, + "microsoft.graph.defaultManagedAppProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppProtection" + }, + { + "title": "defaultManagedAppProtection", + "type": "object", + "properties": { + "appDataEncryptionType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppDataEncryptionType" + } + ], + "description": "Type of encryption which should be used for data in a managed app. (iOS Only)" + }, + "screenCaptureBlocked": { + "type": "boolean", + "description": "Indicates whether screen capture is blocked. (Android only)" + }, + "encryptAppData": { + "type": "boolean", + "description": "Indicates whether managed-app data should be encrypted. (Android only)" + }, + "disableAppEncryptionIfDeviceEncryptionIsEnabled": { + "type": "boolean", + "description": "When this setting is enabled, app level encryption is disabled if device level encryption is enabled. (Android only)" + }, + "minimumRequiredSdkVersion": { + "type": "string", + "description": "Versions less than the specified version will block the managed app from accessing company data. (iOS Only)", + "nullable": true + }, + "customSettings": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.keyValuePair" + }, + "description": "A set of string key and string value pairs to be sent to the affected users, unalterned by this service" + }, + "deployedAppCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Count of apps to which the current policy is deployed." + }, + "minimumRequiredPatchVersion": { + "type": "string", + "description": "Define the oldest required Android security patch level a user can have to gain secure access to the app. (Android only)", + "nullable": true + }, + "minimumWarningPatchVersion": { + "type": "string", + "description": "Define the oldest recommended Android security patch level a user can have for secure access to the app. (Android only)", + "nullable": true + }, + "faceIdBlocked": { + "type": "boolean", + "description": "Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True. (iOS Only)" + }, + "apps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + }, + "description": "List of apps to which the policy is deployed." + }, + "deploymentSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + ], + "description": "Navigation property to deployment summary of the configuration.", + "nullable": true + } + }, + "description": "Policy used to configure detailed management settings for a specified set of apps for all users not targeted by a TargetedManagedAppProtection Policy" + } + ] + }, + "microsoft.graph.managedAppConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + }, + { + "title": "managedAppConfiguration", + "type": "object", + "properties": { + "customSettings": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.keyValuePair" + }, + "description": "A set of string key and string value pairs to be sent to apps for users to whom the configuration is scoped, unalterned by this service" + } + }, + "description": "Configuration used to deliver a set of custom settings as-is to apps for users to whom the configuration is scoped" + } + ] + }, + "microsoft.graph.targetedManagedAppConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppConfiguration" + }, + { + "title": "targetedManagedAppConfiguration", + "type": "object", + "properties": { + "deployedAppCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Count of apps to which the current policy is deployed." + }, + "isAssigned": { + "type": "boolean", + "description": "Indicates if the policy is deployed to any inclusion groups or not." + }, + "apps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedMobileApp" + }, + "description": "List of apps to which the policy is deployed." + }, + "deploymentSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary" + } + ], + "description": "Navigation property to deployment summary of the configuration.", + "nullable": true + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + }, + "description": "Navigation property to list of inclusion and exclusion groups to which the policy is deployed." + } + }, + "description": "Configuration used to deliver a set of custom settings as-is to all users in the targeted security group" + } + ] + }, + "microsoft.graph.windowsInformationProtection": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicy" + }, + { + "title": "windowsInformationProtection", + "type": "object", + "properties": { + "enforcementLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionEnforcementLevel" + } + ], + "description": "WIP enforcement level.See the Enum definition for supported values" + }, + "enterpriseDomain": { + "type": "string", + "description": "Primary enterprise domain", + "nullable": true + }, + "enterpriseProtectedDomainNames": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "nullable": true + }, + "description": "List of enterprise domains to be protected" + }, + "protectionUnderLockConfigRequired": { + "type": "boolean", + "description": "Specifies whether the protection under lock feature (also known as encrypt under pin) should be configured" + }, + "dataRecoveryCertificate": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionDataRecoveryCertificate" + } + ], + "description": "Specifies a recovery certificate that can be used for data recovery of encrypted files. This is the same as the data recovery agent(DRA) certificate for encrypting file system(EFS)", + "nullable": true + }, + "revokeOnUnenrollDisabled": { + "type": "boolean", + "description": "This policy controls whether to revoke the WIP keys when a device unenrolls from the management service. If set to 1 (Don't revoke keys), the keys will not be revoked and the user will continue to have access to protected files after unenrollment. If the keys are not revoked, there will be no revoked file cleanup subsequently." + }, + "rightsManagementServicesTemplateId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "description": "TemplateID GUID to use for RMS encryption. The RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access", + "format": "uuid", + "nullable": true + }, + "azureRightsManagementServicesAllowed": { + "type": "boolean", + "description": "Specifies whether to allow Azure RMS encryption for WIP" + }, + "iconsVisible": { + "type": "boolean", + "description": "Determines whether overlays are added to icons for WIP protected files in Explorer and enterprise only app tiles in the Start menu. Starting in Windows 10, version 1703 this setting also configures the visibility of the WIP icon in the title bar of a WIP-protected app" + }, + "protectedApps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionApp" + } + ], + "nullable": true + }, + "description": "Protected applications can access enterprise data and the data handled by those applications are protected with encryption" + }, + "exemptApps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionApp" + } + ], + "nullable": true + }, + "description": "Exempt applications can also access enterprise data, but the data handled by those applications are not protected. This is because some critical enterprise applications may have compatibility problems with encrypted data." + }, + "enterpriseNetworkDomainNames": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "nullable": true + }, + "description": "This is the list of domains that comprise the boundaries of the enterprise. Data from one of these domains that is sent to a device will be considered enterprise data and protected These locations will be considered a safe destination for enterprise data to be shared to" + }, + "enterpriseProxiedDomains": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionProxiedDomainCollection" + } + ], + "nullable": true + }, + "description": "Contains a list of Enterprise resource domains hosted in the cloud that need to be protected. Connections to these resources are considered enterprise data. If a proxy is paired with a cloud resource, traffic to the cloud resource will be routed through the enterprise network via the denoted proxy server (on Port 80). A proxy server used for this purpose must also be configured using the EnterpriseInternalProxyServers policy" + }, + "enterpriseIPRanges": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionIPRangeCollection" + } + ], + "nullable": true + }, + "description": "Sets the enterprise IP ranges that define the computers in the enterprise network. Data that comes from those computers will be considered part of the enterprise and protected. These locations will be considered a safe destination for enterprise data to be shared to" + }, + "enterpriseIPRangesAreAuthoritative": { + "type": "boolean", + "description": "Boolean value that tells the client to accept the configured list and not to use heuristics to attempt to find other subnets. Default is false" + }, + "enterpriseProxyServers": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "nullable": true + }, + "description": "This is a list of proxy servers. Any server not on this list is considered non-enterprise" + }, + "enterpriseInternalProxyServers": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "nullable": true + }, + "description": "This is the comma-separated list of internal proxy servers. For example, \"157.54.14.28, 157.54.11.118, 10.202.14.167, 157.53.14.163, 157.69.210.59\". These proxies have been configured by the admin to connect to specific resources on the Internet. They are considered to be enterprise network locations. The proxies are only leveraged in configuring the EnterpriseProxiedDomains policy to force traffic to the matched domains through these proxies" + }, + "enterpriseProxyServersAreAuthoritative": { + "type": "boolean", + "description": "Boolean value that tells the client to accept the configured list of proxies and not try to detect other work proxies. Default is false" + }, + "neutralDomainResources": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "nullable": true + }, + "description": "List of domain names that can used for work or personal resource" + }, + "indexingEncryptedStoresOrItemsBlocked": { + "type": "boolean", + "description": "This switch is for the Windows Search Indexer, to allow or disallow indexing of items" + }, + "smbAutoEncryptedFileExtensions": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "nullable": true + }, + "description": "Specifies a list of file extensions, so that files with these extensions are encrypted when copying from an SMB share within the corporate boundary" + }, + "isAssigned": { + "type": "boolean", + "description": "Indicates if the policy is deployed to any inclusion groups or not." + }, + "protectedAppLockerFiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile" + }, + "description": "Another way to input protected apps through xml files" + }, + "exemptAppLockerFiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile" + }, + "description": "Another way to input exempt apps through xml files" + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment" + }, + "description": "Navigation property to list of security groups targeted for policy." + } + }, + "description": "Policy for Windows information protection to configure detailed management settings" + } + ] + }, + "microsoft.graph.mdmWindowsInformationProtectionPolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtection" + }, + { + "title": "mdmWindowsInformationProtectionPolicy", + "type": "object", + "description": "Policy for Windows information protection with MDM" + } + ] + }, + "microsoft.graph.windowsInformationProtectionPolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtection" + }, + { + "title": "windowsInformationProtectionPolicy", + "type": "object", + "properties": { + "revokeOnMdmHandoffDisabled": { + "type": "boolean", + "description": "New property in RS2, pending documentation" + }, + "mdmEnrollmentUrl": { + "type": "string", + "description": "Enrollment url for the MDM", + "nullable": true + }, + "windowsHelloForBusinessBlocked": { + "type": "boolean", + "description": "Boolean value that sets Windows Hello for Business as a method for signing into Windows." + }, + "pinMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest." + }, + "pinUppercaseLetters": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPinCharacterRequirements" + } + ], + "description": "Integer value that configures the use of uppercase letters in the Windows Hello for Business PIN. Default is NotAllow." + }, + "pinLowercaseLetters": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPinCharacterRequirements" + } + ], + "description": "Integer value that configures the use of lowercase letters in the Windows Hello for Business PIN. Default is NotAllow." + }, + "pinSpecialCharacters": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionPinCharacterRequirements" + } + ], + "description": "Integer value that configures the use of special characters in the Windows Hello for Business PIN. Valid special characters for Windows Hello for Business PIN gestures include: ! \" # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \\ ] ^ _ ` { | } ~. Default is NotAllow." + }, + "pinExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Integer value specifies the period of time (in days) that a PIN can be used before the system requires the user to change it. The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user's PIN will never expire. This node was added in Windows 10, version 1511. Default is 0." + }, + "numberOfPastPinsRemembered": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Integer value that specifies the number of past PINs that can be associated to a user account that can't be reused. The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required. This node was added in Windows 10, version 1511. Default is 0." + }, + "passwordMaximumAttemptCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of authentication failures allowed before the device will be wiped. A value of 0 disables device wipe functionality. Range is an integer X where 4 <= X <= 16 for desktop and 0 <= X <= 999 for mobile devices." + }, + "minutesOfInactivityBeforeDeviceLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Range is an integer X where 0 <= X <= 999." + }, + "daysWithoutContactBeforeUnenroll": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Offline interval before app data is wiped (days) " + } + }, + "description": "Policy for Windows information protection without MDM" + } + ] + }, + "microsoft.graph.managedAppStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedAppStatus", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Friendly name of the status report.", + "nullable": true + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + } + }, + "description": "Represents app protection and configuration status for the organization." + } + ] + }, + "microsoft.graph.managedEBook": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedEBook", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Name of the eBook." + }, + "description": { + "type": "string", + "description": "Description.", + "nullable": true + }, + "publisher": { + "type": "string", + "description": "Publisher.", + "nullable": true + }, + "publishedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time when the eBook was published.", + "format": "date-time" + }, + "largeCover": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mimeContent" + } + ], + "description": "Book cover.", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time when the eBook file was created.", + "format": "date-time" + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The date and time when the eBook was last modified.", + "format": "date-time" + }, + "informationUrl": { + "type": "string", + "description": "The more information Url.", + "nullable": true + }, + "privacyInformationUrl": { + "type": "string", + "description": "The privacy statement Url.", + "nullable": true + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + }, + "description": "The list of assignments for this eBook." + }, + "installSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.eBookInstallSummary" + } + ], + "description": "Mobile App Install Summary.", + "nullable": true + }, + "deviceStates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + }, + "description": "The list of installation states for this eBook." + }, + "userStateSummary": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.userInstallStateSummary" + }, + "description": "The list of installation states for this eBook." + } + }, + "description": "An abstract class containing the base properties for Managed eBook." + } + ] + }, + "microsoft.graph.mobileAppAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mobileAppAssignment", + "type": "object", + "properties": { + "intent": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.installIntent" + } + ], + "description": "The install intent defined by the admin." + }, + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "The target group assignment defined by the admin.", + "nullable": true + }, + "settings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignmentSettings" + } + ], + "description": "The settings for target assignment defined by the admin.", + "nullable": true + } + }, + "description": "A class containing the properties used for Group Assignment of a Mobile App." + } + ] + }, + "microsoft.graph.deviceAndAppManagementAssignmentTarget": { + "title": "deviceAndAppManagementAssignmentTarget", + "type": "object" + }, + "microsoft.graph.mobileAppAssignmentSettings": { + "title": "mobileAppAssignmentSettings", + "type": "object" + }, + "microsoft.graph.mimeContent": { + "title": "mimeContent", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "Indicates the content mime type.", + "nullable": true + }, + "value": { + "type": "string", + "description": "The byte array that contains the actual content.", + "format": "base64url", + "nullable": true + } + } + }, + "microsoft.graph.mobileAppContentFile": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mobileAppContentFile", + "type": "object", + "properties": { + "azureStorageUri": { + "type": "string", + "description": "The Azure Storage URI.", + "nullable": true + }, + "isCommitted": { + "type": "boolean", + "description": "A value indicating whether the file is committed." + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The time the file was created.", + "format": "date-time" + }, + "name": { + "type": "string", + "description": "the file name.", + "nullable": true + }, + "size": { + "type": "integer", + "description": "The size of the file prior to encryption.", + "format": "int64" + }, + "sizeEncrypted": { + "type": "integer", + "description": "The size of the file after encryption.", + "format": "int64" + }, + "azureStorageUriExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The time the Azure storage Uri expires.", + "format": "date-time", + "nullable": true + }, + "manifest": { + "type": "string", + "description": "The manifest information.", + "format": "base64url", + "nullable": true + }, + "uploadState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppContentFileUploadState" + } + ], + "description": "The state of the current upload request." + } + }, + "description": "Contains properties for a single installer file that is associated with a given mobileAppContent version." + } + ] + }, + "microsoft.graph.fileEncryptionInfo": { + "title": "fileEncryptionInfo", + "type": "object", + "properties": { + "encryptionKey": { + "type": "string", + "description": "The key used to encrypt the file content.", + "format": "base64url", + "nullable": true + }, + "initializationVector": { + "type": "string", + "description": "The initialization vector used for the encryption algorithm.", + "format": "base64url", + "nullable": true + }, + "mac": { + "type": "string", + "description": "The hash of the encrypted file content + IV (content hash).", + "format": "base64url", + "nullable": true + }, + "macKey": { + "type": "string", + "description": "The key used to get mac.", + "format": "base64url", + "nullable": true + }, + "profileIdentifier": { + "type": "string", + "description": "The the profile identifier.", + "nullable": true + }, + "fileDigest": { + "type": "string", + "description": "The file digest prior to encryption.", + "format": "base64url", + "nullable": true + }, + "fileDigestAlgorithm": { + "type": "string", + "description": "The file digest algorithm.", + "nullable": true + } + } + }, + "microsoft.graph.allLicensedUsersAssignmentTarget": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + }, + { + "title": "allLicensedUsersAssignmentTarget", + "type": "object" + } + ] + }, + "microsoft.graph.groupAssignmentTarget": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + }, + { + "title": "groupAssignmentTarget", + "type": "object", + "properties": { + "groupId": { + "type": "string", + "description": "The group Id that is the target of the assignment.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.exclusionGroupAssignmentTarget": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.groupAssignmentTarget" + }, + { + "title": "exclusionGroupAssignmentTarget", + "type": "object" + } + ] + }, + "microsoft.graph.allDevicesAssignmentTarget": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + }, + { + "title": "allDevicesAssignmentTarget", + "type": "object" + } + ] + }, + "microsoft.graph.iosLobAppAssignmentSettings": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignmentSettings" + }, + { + "title": "iosLobAppAssignmentSettings", + "type": "object", + "properties": { + "vpnConfigurationId": { + "type": "string", + "description": "The VPN Configuration Id to apply for this app.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.iosStoreAppAssignmentSettings": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignmentSettings" + }, + { + "title": "iosStoreAppAssignmentSettings", + "type": "object", + "properties": { + "vpnConfigurationId": { + "type": "string", + "description": "The VPN Configuration Id to apply for this app.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.iosVppAppAssignmentSettings": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignmentSettings" + }, + { + "title": "iosVppAppAssignmentSettings", + "type": "object", + "properties": { + "useDeviceLicensing": { + "type": "boolean", + "description": "Whether or not to use device licensing." + }, + "vpnConfigurationId": { + "type": "string", + "description": "The VPN Configuration Id to apply for this app.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.microsoftStoreForBusinessAppAssignmentSettings": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppAssignmentSettings" + }, + { + "title": "microsoftStoreForBusinessAppAssignmentSettings", + "type": "object", + "properties": { + "useDeviceContext": { + "type": "boolean", + "description": "Whether or not to use device execution context for Microsoft Store for Business mobile app." + } + } + } + ] + }, + "microsoft.graph.macOSOfficeSuiteApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "macOSOfficeSuiteApp", + "type": "object", + "description": "Contains properties and inherited properties for the MacOS Office Suite App." + } + ] + }, + "microsoft.graph.managedApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "managedApp", + "type": "object", + "properties": { + "appAvailability": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppAvailability" + } + ], + "description": "The Application's availability." + }, + "version": { + "type": "string", + "description": "The Application's version.", + "nullable": true + } + }, + "description": "Abstract class that contains properties and inherited properties for apps that you can manage with an Intune app protection policy." + } + ] + }, + "microsoft.graph.managedAndroidStoreApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedApp" + }, + { + "title": "managedAndroidStoreApp", + "type": "object", + "properties": { + "packageId": { + "type": "string", + "description": "The app's package ID.", + "nullable": true + }, + "appStoreUrl": { + "type": "string", + "description": "The Android AppStoreUrl." + }, + "minimumSupportedOperatingSystem": { + "$ref": "#/components/schemas/microsoft.graph.androidMinimumOperatingSystem" + } + }, + "description": "Contains properties and inherited properties for Android store apps that you can manage with an Intune app protection policy." + } + ] + }, + "microsoft.graph.androidMinimumOperatingSystem": { + "title": "androidMinimumOperatingSystem", + "type": "object", + "properties": { + "v4_0": { + "type": "boolean", + "description": "Version 4.0 or later." + }, + "v4_0_3": { + "type": "boolean", + "description": "Version 4.0.3 or later." + }, + "v4_1": { + "type": "boolean", + "description": "Version 4.1 or later." + }, + "v4_2": { + "type": "boolean", + "description": "Version 4.2 or later." + }, + "v4_3": { + "type": "boolean", + "description": "Version 4.3 or later." + }, + "v4_4": { + "type": "boolean", + "description": "Version 4.4 or later." + }, + "v5_0": { + "type": "boolean", + "description": "Version 5.0 or later." + }, + "v5_1": { + "type": "boolean", + "description": "Version 5.1 or later." + } + } + }, + "microsoft.graph.managedIOSStoreApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedApp" + }, + { + "title": "managedIOSStoreApp", + "type": "object", + "properties": { + "bundleId": { + "type": "string", + "description": "The app's Bundle ID.", + "nullable": true + }, + "appStoreUrl": { + "type": "string", + "description": "The Apple AppStoreUrl." + }, + "applicableDeviceType": { + "$ref": "#/components/schemas/microsoft.graph.iosDeviceType" + }, + "minimumSupportedOperatingSystem": { + "$ref": "#/components/schemas/microsoft.graph.iosMinimumOperatingSystem" + } + }, + "description": "Contains properties and inherited properties for an iOS store app that you can manage with an Intune app protection policy." + } + ] + }, + "microsoft.graph.iosDeviceType": { + "title": "iosDeviceType", + "type": "object", + "properties": { + "iPad": { + "type": "boolean", + "description": "Whether the app should run on iPads." + }, + "iPhoneAndIPod": { + "type": "boolean", + "description": "Whether the app should run on iPhones and iPods." + } + } + }, + "microsoft.graph.iosMinimumOperatingSystem": { + "title": "iosMinimumOperatingSystem", + "type": "object", + "properties": { + "v8_0": { + "type": "boolean", + "description": "Version 8.0 or later." + }, + "v9_0": { + "type": "boolean", + "description": "Version 9.0 or later." + }, + "v10_0": { + "type": "boolean", + "description": "Version 10.0 or later." + }, + "v11_0": { + "type": "boolean", + "description": "Version 11.0 or later." + } + } + }, + "microsoft.graph.managedMobileLobApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedApp" + }, + { + "title": "managedMobileLobApp", + "type": "object", + "properties": { + "committedContentVersion": { + "type": "string", + "description": "The internal committed content version.", + "nullable": true + }, + "fileName": { + "type": "string", + "description": "The name of the main Lob application file.", + "nullable": true + }, + "size": { + "type": "integer", + "description": "The total size, including all uploaded files.", + "format": "int64" + }, + "contentVersions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppContent" + }, + "description": "The list of content versions for this app." + } + }, + "description": "An abstract base class containing properties for all managed mobile line of business apps." + } + ] + }, + "microsoft.graph.mobileAppContent": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mobileAppContent", + "type": "object", + "properties": { + "files": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppContentFile" + }, + "description": "The list of files for this app content version." + } + }, + "description": "Contains content properties for a specific app version. Each mobileAppContent can have multiple mobileAppContentFile." + } + ] + }, + "microsoft.graph.managedAndroidLobApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileLobApp" + }, + { + "title": "managedAndroidLobApp", + "type": "object", + "properties": { + "packageId": { + "type": "string", + "description": "The package identifier.", + "nullable": true + }, + "minimumSupportedOperatingSystem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidMinimumOperatingSystem" + } + ], + "description": "The value for the minimum applicable operating system.", + "nullable": true + }, + "versionName": { + "type": "string", + "description": "The version name of managed Android Line of Business (LoB) app.", + "nullable": true + }, + "versionCode": { + "type": "string", + "description": "The version code of managed Android Line of Business (LoB) app.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for Managed Android Line Of Business apps." + } + ] + }, + "microsoft.graph.managedIOSLobApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedMobileLobApp" + }, + { + "title": "managedIOSLobApp", + "type": "object", + "properties": { + "bundleId": { + "type": "string", + "description": "The Identity Name.", + "nullable": true + }, + "applicableDeviceType": { + "$ref": "#/components/schemas/microsoft.graph.iosDeviceType" + }, + "minimumSupportedOperatingSystem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosMinimumOperatingSystem" + } + ], + "description": "The value for the minimum applicable operating system.", + "nullable": true + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The expiration time.", + "format": "date-time", + "nullable": true + }, + "versionNumber": { + "type": "string", + "description": "The version number of managed iOS Line of Business (LoB) app.", + "nullable": true + }, + "buildNumber": { + "type": "string", + "description": "The build number of managed iOS Line of Business (LoB) app.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for Managed iOS Line Of Business apps." + } + ] + }, + "microsoft.graph.mobileLobApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "mobileLobApp", + "type": "object", + "properties": { + "committedContentVersion": { + "type": "string", + "description": "The internal committed content version.", + "nullable": true + }, + "fileName": { + "type": "string", + "description": "The name of the main Lob application file.", + "nullable": true + }, + "size": { + "type": "integer", + "description": "The total size, including all uploaded files.", + "format": "int64" + }, + "contentVersions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileAppContent" + }, + "description": "The list of content versions for this app." + } + }, + "description": "An abstract base class containing properties for all mobile line of business apps." + } + ] + }, + "microsoft.graph.windowsMinimumOperatingSystem": { + "title": "windowsMinimumOperatingSystem", + "type": "object", + "properties": { + "v8_0": { + "type": "boolean", + "description": "Windows version 8.0 or later." + }, + "v8_1": { + "type": "boolean", + "description": "Windows version 8.1 or later." + }, + "v10_0": { + "type": "boolean", + "description": "Windows version 10.0 or later." + } + } + }, + "microsoft.graph.windowsMobileMSI": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileLobApp" + }, + { + "title": "windowsMobileMSI", + "type": "object", + "properties": { + "commandLine": { + "type": "string", + "description": "The command line.", + "nullable": true + }, + "productCode": { + "type": "string", + "description": "The product code.", + "nullable": true + }, + "productVersion": { + "type": "string", + "description": "The product version of Windows Mobile MSI Line of Business (LoB) app.", + "nullable": true + }, + "ignoreVersionDetection": { + "type": "boolean", + "description": "A boolean to control whether the app's version will be used to detect the app after it is installed on a device. Set this to true for Windows Mobile MSI Line of Business (LoB) apps that use a self update feature." + } + }, + "description": "Contains properties and inherited properties for Windows Mobile MSI Line Of Business apps." + } + ] + }, + "microsoft.graph.windowsUniversalAppX": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileLobApp" + }, + { + "title": "windowsUniversalAppX", + "type": "object", + "properties": { + "applicableArchitectures": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsArchitecture" + } + ], + "description": "The Windows architecture(s) for which this app can run on." + }, + "applicableDeviceTypes": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsDeviceType" + } + ], + "description": "The Windows device type(s) for which this app can run on." + }, + "identityName": { + "type": "string", + "description": "The Identity Name.", + "nullable": true + }, + "identityPublisherHash": { + "type": "string", + "description": "The Identity Publisher Hash." + }, + "identityResourceIdentifier": { + "type": "string", + "description": "The Identity Resource Identifier.", + "nullable": true + }, + "isBundle": { + "type": "boolean", + "description": "Whether or not the app is a bundle." + }, + "minimumSupportedOperatingSystem": { + "$ref": "#/components/schemas/microsoft.graph.windowsMinimumOperatingSystem" + }, + "identityVersion": { + "type": "string", + "description": "The identity version.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for Windows Universal AppX Line Of Business apps." + } + ] + }, + "microsoft.graph.androidLobApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileLobApp" + }, + { + "title": "androidLobApp", + "type": "object", + "properties": { + "packageId": { + "type": "string", + "description": "The package identifier.", + "nullable": true + }, + "minimumSupportedOperatingSystem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidMinimumOperatingSystem" + } + ], + "description": "The value for the minimum applicable operating system.", + "nullable": true + }, + "versionName": { + "type": "string", + "description": "The version name of Android Line of Business (LoB) app.", + "nullable": true + }, + "versionCode": { + "type": "string", + "description": "The version code of Android Line of Business (LoB) app.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for Android Line Of Business apps." + } + ] + }, + "microsoft.graph.iosLobApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileLobApp" + }, + { + "title": "iosLobApp", + "type": "object", + "properties": { + "bundleId": { + "type": "string", + "description": "The Identity Name.", + "nullable": true + }, + "applicableDeviceType": { + "$ref": "#/components/schemas/microsoft.graph.iosDeviceType" + }, + "minimumSupportedOperatingSystem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosMinimumOperatingSystem" + } + ], + "description": "The value for the minimum applicable operating system.", + "nullable": true + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The expiration time.", + "format": "date-time", + "nullable": true + }, + "versionNumber": { + "type": "string", + "description": "The version number of iOS Line of Business (LoB) app.", + "nullable": true + }, + "buildNumber": { + "type": "string", + "description": "The build number of iOS Line of Business (LoB) app.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for iOS Line Of Business apps." + } + ] + }, + "microsoft.graph.microsoftStoreForBusinessApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "microsoftStoreForBusinessApp", + "type": "object", + "properties": { + "usedLicenseCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of Microsoft Store for Business licenses in use." + }, + "totalLicenseCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The total number of Microsoft Store for Business licenses." + }, + "productKey": { + "type": "string", + "description": "The app product key", + "nullable": true + }, + "licenseType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.microsoftStoreForBusinessLicenseType" + } + ], + "description": "The app license type" + }, + "packageIdentityName": { + "type": "string", + "description": "The app package identifier", + "nullable": true + } + }, + "description": "Microsoft Store for Business Apps. This class does not support Create, Delete, or Update." + } + ] + }, + "microsoft.graph.webApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "webApp", + "type": "object", + "properties": { + "appUrl": { + "type": "string", + "description": "The web app URL.", + "nullable": true + }, + "useManagedBrowser": { + "type": "boolean", + "description": "Whether or not to use managed browser. This property is only applicable for Android and IOS." + } + }, + "description": "Contains properties and inherited properties for web apps." + } + ] + }, + "microsoft.graph.androidStoreApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "androidStoreApp", + "type": "object", + "properties": { + "packageId": { + "type": "string", + "description": "The package identifier.", + "nullable": true + }, + "appStoreUrl": { + "type": "string", + "description": "The Android app store URL.", + "nullable": true + }, + "minimumSupportedOperatingSystem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidMinimumOperatingSystem" + } + ], + "description": "The value for the minimum applicable operating system.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for Android store apps." + } + ] + }, + "microsoft.graph.iosVppApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "iosVppApp", + "type": "object", + "properties": { + "usedLicenseCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of VPP licenses in use." + }, + "totalLicenseCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The total number of VPP licenses." + }, + "releaseDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The VPP application release date and time.", + "format": "date-time", + "nullable": true + }, + "appStoreUrl": { + "type": "string", + "description": "The store URL.", + "nullable": true + }, + "licensingType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vppLicensingType" + } + ], + "description": "The supported License Type.", + "nullable": true + }, + "applicableDeviceType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosDeviceType" + } + ], + "description": "The applicable iOS Device Type.", + "nullable": true + }, + "vppTokenOrganizationName": { + "type": "string", + "description": "The organization associated with the Apple Volume Purchase Program Token", + "nullable": true + }, + "vppTokenAccountType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vppTokenAccountType" + } + ], + "description": "The type of volume purchase program which the given Apple Volume Purchase Program Token is associated with. Possible values are: `business`, `education`." + }, + "vppTokenAppleId": { + "type": "string", + "description": "The Apple Id associated with the given Apple Volume Purchase Program Token.", + "nullable": true + }, + "bundleId": { + "type": "string", + "description": "The Identity Name.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps." + } + ] + }, + "microsoft.graph.vppLicensingType": { + "title": "vppLicensingType", + "type": "object", + "properties": { + "supportsUserLicensing": { + "type": "boolean", + "description": "Whether the program supports the user licensing type." + }, + "supportsDeviceLicensing": { + "type": "boolean", + "description": "Whether the program supports the device licensing type." + } + } + }, + "microsoft.graph.iosStoreApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileApp" + }, + { + "title": "iosStoreApp", + "type": "object", + "properties": { + "bundleId": { + "type": "string", + "description": "The Identity Name.", + "nullable": true + }, + "appStoreUrl": { + "type": "string", + "description": "The Apple App Store URL", + "nullable": true + }, + "applicableDeviceType": { + "$ref": "#/components/schemas/microsoft.graph.iosDeviceType" + }, + "minimumSupportedOperatingSystem": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosMinimumOperatingSystem" + } + ], + "description": "The value for the minimum applicable operating system.", + "nullable": true + } + }, + "description": "Contains properties and inherited properties for iOS store apps." + } + ] + }, + "microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceMobileAppConfigurationDeviceStatus", + "type": "object", + "properties": { + "deviceDisplayName": { + "type": "string", + "description": "Device name of the DevicePolicyStatus.", + "nullable": true + }, + "userName": { + "type": "string", + "description": "The User Name that is being reported", + "nullable": true + }, + "deviceModel": { + "type": "string", + "description": "The device model that is being reported", + "nullable": true + }, + "complianceGracePeriodExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device compliance grace period expires", + "format": "date-time" + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + }, + "description": "Contains properties, inherited properties and actions for an MDM mobile app configuration status for a device." + } + ] + }, + "microsoft.graph.managedDeviceMobileAppConfigurationUserStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceMobileAppConfigurationUserStatus", + "type": "object", + "properties": { + "userDisplayName": { + "type": "string", + "description": "User name of the DevicePolicyStatus.", + "nullable": true + }, + "devicesCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Devices count for that user." + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + }, + "description": "Contains properties, inherited properties and actions for an MDM mobile app configuration status for a user." + } + ] + }, + "microsoft.graph.managedDeviceMobileAppConfigurationAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceMobileAppConfigurationAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "Assignment target that the T&C policy is assigned to.", + "nullable": true + } + }, + "description": "Contains the properties used to assign an MDM app configuration to a group." + } + ] + }, + "microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceMobileAppConfigurationDeviceSummary", + "type": "object", + "properties": { + "pendingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of pending devices" + }, + "notApplicableCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices" + }, + "successCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of succeeded devices" + }, + "errorCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error devices" + }, + "failedCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of failed devices" + }, + "lastUpdateDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last update time", + "format": "date-time" + }, + "configurationVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the policy for that overview" + } + }, + "description": "Contains properties, inherited properties and actions for an MDM mobile app configuration device status summary." + } + ] + }, + "microsoft.graph.managedDeviceMobileAppConfigurationUserSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceMobileAppConfigurationUserSummary", + "type": "object", + "properties": { + "pendingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of pending Users" + }, + "notApplicableCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable users" + }, + "successCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of succeeded Users" + }, + "errorCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error Users" + }, + "failedCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of failed Users" + }, + "lastUpdateDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last update time", + "format": "date-time" + }, + "configurationVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the policy for that overview" + } + }, + "description": "Contains properties, inherited properties and actions for an MDM mobile app configuration user status summary." + } + ] + }, + "microsoft.graph.iosMobileAppConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration" + }, + { + "title": "iosMobileAppConfiguration", + "type": "object", + "properties": { + "encodedSettingXml": { + "type": "string", + "description": "mdm app configuration Base64 binary.", + "format": "base64url", + "nullable": true + }, + "settings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appConfigurationSettingItem" + } + ], + "nullable": true + }, + "description": "app configuration setting items." + } + }, + "description": "Contains properties, inherited properties and actions for iOS mobile app configurations." + } + ] + }, + "microsoft.graph.appConfigurationSettingItem": { + "title": "appConfigurationSettingItem", + "type": "object", + "properties": { + "appConfigKey": { + "type": "string", + "description": "app configuration key." + }, + "appConfigKeyType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mdmAppConfigKeyType" + } + ], + "description": "app configuration key type." + }, + "appConfigKeyValue": { + "type": "string", + "description": "app configuration key value." + } + } + }, + "microsoft.graph.deviceManagement": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceManagement", + "type": "object", + "properties": { + "subscriptionState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementSubscriptionState" + } + ], + "description": "Tenant mobile device management subscription state." + }, + "settings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementSettings" + } + ], + "description": "Account level settings.", + "nullable": true + }, + "intuneBrand": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.intuneBrand" + } + ], + "description": "intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal.", + "nullable": true + }, + "termsAndConditions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + }, + "description": "The terms and conditions associated with device management of the company." + }, + "applePushNotificationCertificate": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.applePushNotificationCertificate" + } + ], + "description": "Apple push notification certificate.", + "nullable": true + }, + "managedDeviceOverview": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedDeviceOverview" + } + ], + "description": "Device overview", + "nullable": true + }, + "detectedApps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.detectedApp" + }, + "description": "The list of detected apps associated with a device." + }, + "managedDevices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + }, + "description": "The list of managed devices." + }, + "deviceConfigurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + "description": "The device configurations." + }, + "deviceCompliancePolicies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + "description": "The device compliance policies." + }, + "softwareUpdateStatusSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.softwareUpdateStatusSummary" + } + ], + "description": "The software update status summary.", + "nullable": true + }, + "deviceCompliancePolicyDeviceStateSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary" + } + ], + "description": "The device compliance state summary for this account.", + "nullable": true + }, + "deviceCompliancePolicySettingStateSummaries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary" + }, + "description": "The summary states of compliance policy settings for this account." + }, + "deviceConfigurationDeviceStateSummaries": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary" + } + ], + "description": "The device configuration device state summary for this account.", + "nullable": true + }, + "iosUpdateStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosUpdateDeviceStatus" + }, + "description": "The IOS software update installation statuses for this account." + }, + "deviceCategories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCategory" + }, + "description": "The list of device categories with the tenant." + }, + "exchangeConnectors": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnector" + }, + "description": "The list of Exchange Connectors configured by the tenant." + }, + "deviceEnrollmentConfigurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + }, + "description": "The list of device enrollment configurations" + }, + "conditionalAccessSettings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.onPremisesConditionalAccessSettings" + } + ], + "description": "The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access", + "nullable": true + }, + "mobileThreatDefenseConnectors": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatDefenseConnector" + }, + "description": "The list of Mobile threat Defense connectors configured by the tenant." + }, + "deviceManagementPartners": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartner" + }, + "description": "The list of Device Management Partners configured by the tenant." + }, + "notificationMessageTemplates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.notificationMessageTemplate" + }, + "description": "The Notification Message Templates." + }, + "roleDefinitions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + }, + "description": "The Role Definitions." + }, + "roleAssignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementRoleAssignment" + }, + "description": "The Role Assignments." + }, + "resourceOperations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.resourceOperation" + }, + "description": "The Resource Operations." + }, + "telecomExpenseManagementPartners": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.telecomExpenseManagementPartner" + }, + "description": "The telecom expense management partners." + }, + "remoteAssistancePartners": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistancePartner" + }, + "description": "The remote assist partners." + }, + "windowsInformationProtectionAppLearningSummaries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionAppLearningSummary" + }, + "description": "The windows information protection app learning summaries." + }, + "windowsInformationProtectionNetworkLearningSummaries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + }, + "description": "The windows information protection network learning summaries." + }, + "troubleshootingEvents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + }, + "description": "The list of troubleshooting events for the tenant." + } + }, + "description": "Singleton entity that acts as a container for all device management functionality." + } + ] + }, + "microsoft.graph.termsAndConditions": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "termsAndConditions", + "type": "object", + "properties": { + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was created.", + "format": "date-time" + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was last modified.", + "format": "date-time" + }, + "displayName": { + "type": "string", + "description": "Administrator-supplied name for the T&C policy. " + }, + "description": { + "type": "string", + "description": "Administrator-supplied description of the T&C policy.", + "nullable": true + }, + "title": { + "type": "string", + "description": "Administrator-supplied title of the terms and conditions. This is shown to the user on prompts to accept the T&C policy.", + "nullable": true + }, + "bodyText": { + "type": "string", + "description": "Administrator-supplied body text of the terms and conditions, typically the terms themselves. This is shown to the user on prompts to accept the T&C policy.", + "nullable": true + }, + "acceptanceStatement": { + "type": "string", + "description": "Administrator-supplied explanation of the terms and conditions, typically describing what it means to accept the terms and conditions set out in the T&C policy. This is shown to the user on prompts to accept the T&C policy.", + "nullable": true + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Integer indicating the current version of the terms. Incremented when an administrator makes a change to the terms and wishes to require users to re-accept the modified T&C policy." + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAssignment" + }, + "description": "The list of assignments for this T&C policy." + }, + "acceptanceStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditionsAcceptanceStatus" + }, + "description": "The list of acceptance statuses for this T&C policy." + } + }, + "description": "A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune." + } + ] + }, + "microsoft.graph.applePushNotificationCertificate": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "applePushNotificationCertificate", + "type": "object", + "properties": { + "appleIdentifier": { + "type": "string", + "description": "Apple Id of the account used to create the MDM push certificate.", + "nullable": true + }, + "topicIdentifier": { + "type": "string", + "description": "Topic Id.", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date and time for Apple push notification certificate.", + "format": "date-time" + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The expiration date and time for Apple push notification certificate.", + "format": "date-time" + }, + "certificate": { + "type": "string", + "nullable": true + } + }, + "description": "Apple push notification certificate." + } + ] + }, + "microsoft.graph.managedDeviceOverview": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedDeviceOverview", + "type": "object", + "properties": { + "enrolledDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total enrolled device count. Does not include PC devices managed via Intune PC Agent" + }, + "mdmEnrolledCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of devices enrolled in MDM" + }, + "dualEnrolledDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of devices enrolled in both MDM and EAS" + }, + "deviceOperatingSystemSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceOperatingSystemSummary" + } + ], + "description": "Device operating system summary.", + "nullable": true + }, + "deviceExchangeAccessStateSummary": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceExchangeAccessStateSummary" + } + ], + "description": "Distribution of Exchange Access State in Intune", + "nullable": true + } + }, + "description": "Summary data for managed devices" + } + ] + }, + "microsoft.graph.detectedApp": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "detectedApp", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Name of the discovered application. Read-only", + "nullable": true + }, + "version": { + "type": "string", + "description": "Version of the discovered application. Read-only", + "nullable": true + }, + "sizeInByte": { + "type": "integer", + "description": "Discovered application size in bytes. Read-only", + "format": "int64" + }, + "deviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of devices that have installed this application" + }, + "managedDevices": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.managedDevice" + }, + "description": "The devices that have the discovered application installed" + } + }, + "description": "A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned." + } + ] + }, + "microsoft.graph.deviceManagementSettings": { + "title": "deviceManagementSettings", + "type": "object", + "properties": { + "deviceComplianceCheckinThresholdDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of days a device is allowed to go without checking in to remain compliant. Valid values 0 to 120", + "format": "int32" + }, + "isScheduledActionEnabled": { + "type": "boolean", + "description": "Is feature enabled or not for scheduled action for rule." + }, + "secureByDefault": { + "type": "boolean", + "description": "Device should be noncompliant when there is no compliance policy targeted when this is true" + } + } + }, + "microsoft.graph.deviceConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfiguration", + "type": "object", + "properties": { + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was last modified.", + "format": "date-time" + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was created.", + "format": "date-time" + }, + "description": { + "type": "string", + "description": "Admin provided description of the Device Configuration.", + "nullable": true + }, + "displayName": { + "type": "string", + "description": "Admin provided name of the device configuration." + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the device configuration." + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationAssignment" + }, + "description": "The list of assignments for the device configuration profile." + }, + "deviceStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus" + }, + "description": "Device configuration installation status by device." + }, + "userStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserStatus" + }, + "description": "Device configuration installation status by user." + }, + "deviceStatusOverview": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview" + } + ], + "description": "Device Configuration devices status overview", + "nullable": true + }, + "userStatusOverview": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationUserOverview" + } + ], + "description": "Device Configuration users status overview", + "nullable": true + }, + "deviceSettingStateSummaries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + }, + "description": "Device Configuration Setting State Device Summary" + } + }, + "description": "Device Configuration." + } + ] + }, + "microsoft.graph.deviceCompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceCompliancePolicy", + "type": "object", + "properties": { + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was created.", + "format": "date-time" + }, + "description": { + "type": "string", + "description": "Admin provided description of the Device Configuration.", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was last modified.", + "format": "date-time" + }, + "displayName": { + "type": "string", + "description": "Admin provided name of the device configuration." + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the device configuration." + }, + "scheduledActionsForRule": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule" + }, + "description": "The list of scheduled action for this rule" + }, + "deviceStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus" + }, + "description": "List of DeviceComplianceDeviceStatus." + }, + "userStatuses": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserStatus" + }, + "description": "List of DeviceComplianceUserStatus." + }, + "deviceStatusOverview": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview" + } + ], + "description": "Device compliance devices status overview", + "nullable": true + }, + "userStatusOverview": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceUserOverview" + } + ], + "description": "Device compliance users status overview", + "nullable": true + }, + "deviceSettingStateSummaries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.settingStateDeviceSummary" + }, + "description": "Compliance Setting State Device Summary" + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment" + }, + "description": "The collection of assignments for this compliance policy." + } + }, + "description": "This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. " + } + ] + }, + "microsoft.graph.softwareUpdateStatusSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "softwareUpdateStatusSummary", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "The name of the policy.", + "nullable": true + }, + "compliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of compliant devices." + }, + "nonCompliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of non compliant devices." + }, + "remediatedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of remediated devices." + }, + "errorDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of devices had error." + }, + "unknownDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of unknown devices." + }, + "conflictDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of conflict devices." + }, + "notApplicableDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices." + }, + "compliantUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of compliant users." + }, + "nonCompliantUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of non compliant users." + }, + "remediatedUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of remediated users." + }, + "errorUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of users had error." + }, + "unknownUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of unknown users." + }, + "conflictUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of conflict users." + }, + "notApplicableUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable users." + } + } + } + ] + }, + "microsoft.graph.deviceCompliancePolicyDeviceStateSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceCompliancePolicyDeviceStateSummary", + "type": "object", + "properties": { + "inGracePeriodCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of devices that are in grace period" + }, + "configManagerCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of devices that have compliance managed by System Center Configuration Manager" + }, + "unknownDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of unknown devices" + }, + "notApplicableDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices" + }, + "compliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of compliant devices" + }, + "remediatedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of remediated devices" + }, + "nonCompliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of NonCompliant devices" + }, + "errorDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error devices" + }, + "conflictDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of conflict devices" + } + } + } + ] + }, + "microsoft.graph.deviceCompliancePolicySettingStateSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceCompliancePolicySettingStateSummary", + "type": "object", + "properties": { + "setting": { + "type": "string", + "description": "The setting class name and property name.", + "nullable": true + }, + "settingName": { + "type": "string", + "description": "Name of the setting.", + "nullable": true + }, + "platformType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.policyPlatformType" + } + ], + "description": "Setting platform" + }, + "unknownDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of unknown devices" + }, + "notApplicableDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices" + }, + "compliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of compliant devices" + }, + "remediatedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of remediated devices" + }, + "nonCompliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of NonCompliant devices" + }, + "errorDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error devices" + }, + "conflictDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of conflict devices" + }, + "deviceComplianceSettingStates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceSettingState" + } + } + }, + "description": "Device Compilance Policy Setting State summary across the account." + } + ] + }, + "microsoft.graph.deviceConfigurationDeviceStateSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationDeviceStateSummary", + "type": "object", + "properties": { + "unknownDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of unknown devices" + }, + "notApplicableDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices" + }, + "compliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of compliant devices" + }, + "remediatedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of remediated devices" + }, + "nonCompliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of NonCompliant devices" + }, + "errorDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error devices" + }, + "conflictDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of conflict devices" + } + } + } + ] + }, + "microsoft.graph.iosUpdateDeviceStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "iosUpdateDeviceStatus", + "type": "object", + "properties": { + "installStatus": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosUpdatesInstallStatus" + } + ], + "description": "The installation status of the policy report." + }, + "osVersion": { + "type": "string", + "description": "The device version that is being reported.", + "nullable": true + }, + "deviceId": { + "type": "string", + "description": "The device id that is being reported.", + "nullable": true + }, + "userId": { + "type": "string", + "description": "The User id that is being reported.", + "nullable": true + }, + "deviceDisplayName": { + "type": "string", + "description": "Device name of the DevicePolicyStatus.", + "nullable": true + }, + "userName": { + "type": "string", + "description": "The User Name that is being reported", + "nullable": true + }, + "deviceModel": { + "type": "string", + "description": "The device model that is being reported", + "nullable": true + }, + "complianceGracePeriodExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device compliance grace period expires", + "format": "date-time" + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.intuneBrand": { + "title": "intuneBrand", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Company/organization name that is displayed to end users.", + "nullable": true + }, + "contactITName": { + "type": "string", + "description": "Name of the person/organization responsible for IT support.", + "nullable": true + }, + "contactITPhoneNumber": { + "type": "string", + "description": "Phone number of the person/organization responsible for IT support.", + "nullable": true + }, + "contactITEmailAddress": { + "type": "string", + "description": "Email address of the person/organization responsible for IT support.", + "nullable": true + }, + "contactITNotes": { + "type": "string", + "description": "Text comments regarding the person/organization responsible for IT support.", + "nullable": true + }, + "privacyUrl": { + "type": "string", + "description": "URL to the company/organization’s privacy policy.", + "nullable": true + }, + "onlineSupportSiteUrl": { + "type": "string", + "description": "URL to the company/organization’s IT helpdesk site.", + "nullable": true + }, + "onlineSupportSiteName": { + "type": "string", + "description": "Display name of the company/organization’s IT helpdesk site.", + "nullable": true + }, + "themeColor": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.rgbColor" + } + ], + "description": "Primary theme color used in the Company Portal applications and web portal.", + "nullable": true + }, + "showLogo": { + "type": "boolean", + "description": "Boolean that represents whether the administrator-supplied logo images are shown or not shown." + }, + "lightBackgroundLogo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mimeContent" + } + ], + "description": "Logo image displayed in Company Portal apps which have a light background behind the logo.", + "nullable": true + }, + "darkBackgroundLogo": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mimeContent" + } + ], + "description": "Logo image displayed in Company Portal apps which have a dark background behind the logo.", + "nullable": true + }, + "showNameNextToLogo": { + "type": "boolean", + "description": "Boolean that represents whether the administrator-supplied display name will be shown next to the logo image." + }, + "showDisplayNameNextToLogo": { + "type": "boolean", + "description": "Boolean that represents whether the administrator-supplied display name will be shown next to the logo image." + } + } + }, + "microsoft.graph.rgbColor": { + "title": "rgbColor", + "type": "object", + "properties": { + "r": { + "type": "integer", + "description": "Red value", + "format": "uint8" + }, + "g": { + "type": "integer", + "description": "Green value", + "format": "uint8" + }, + "b": { + "type": "integer", + "description": "Blue value", + "format": "uint8" + } + } + }, + "microsoft.graph.deviceCategory": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceCategory", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display name for the device category.", + "nullable": true + }, + "description": { + "type": "string", + "description": "Optional description for the device category.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceManagementExchangeConnector": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceManagementExchangeConnector", + "type": "object", + "properties": { + "lastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last sync time for the Exchange Connector", + "format": "date-time" + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnectorStatus" + } + ], + "description": "Exchange Connector Status" + }, + "primarySmtpAddress": { + "type": "string", + "description": "Email address used to configure the Service To Service Exchange Connector.", + "nullable": true + }, + "serverName": { + "type": "string", + "description": "The name of the Exchange server.", + "nullable": true + }, + "connectorServerName": { + "type": "string", + "description": "The name of the server hosting the Exchange Connector.", + "nullable": true + }, + "exchangeConnectorType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementExchangeConnectorType" + } + ], + "description": "The type of Exchange Connector Configured." + }, + "version": { + "type": "string", + "description": "The version of the ExchangeConnectorAgent", + "nullable": true + }, + "exchangeAlias": { + "type": "string", + "description": "An alias assigned to the Exchange server", + "nullable": true + }, + "exchangeOrganization": { + "type": "string", + "description": "Exchange Organization to the Exchange server", + "nullable": true + } + }, + "description": "Entity which represents a connection to an Exchange environment." + } + ] + }, + "microsoft.graph.deviceEnrollmentConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceEnrollmentConfiguration", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "priority": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "assignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment" + }, + "description": "The list of group assignments for the device configuration profile." + } + } + } + ] + }, + "microsoft.graph.onPremisesConditionalAccessSettings": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "onPremisesConditionalAccessSettings", + "type": "object", + "properties": { + "enabled": { + "type": "boolean", + "description": "Indicates if on premises conditional access is enabled for this organization" + }, + "includedGroups": { + "type": "array", + "items": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid" + }, + "description": "User groups that will be targeted by on premises conditional access. All users in these groups will be required to have mobile device managed and compliant for mail access." + }, + "excludedGroups": { + "type": "array", + "items": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "format": "uuid" + }, + "description": "User groups that will be exempt by on premises conditional access. All users in these groups will be exempt from the conditional access policy." + }, + "overrideDefaultRule": { + "type": "boolean", + "description": "Override the default access rule when allowing a device to ensure access is granted." + } + }, + "description": "Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant." + } + ] + }, + "microsoft.graph.mobileThreatDefenseConnector": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "mobileThreatDefenseConnector", + "type": "object", + "properties": { + "lastHeartbeatDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime of last Heartbeat recieved from the Data Sync Partner", + "format": "date-time" + }, + "partnerState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileThreatPartnerTenantState" + } + ], + "description": "Data Sync Partner state for this account" + }, + "androidEnabled": { + "type": "boolean", + "description": "For Android, set whether data from the data sync partner should be used during compliance evaluations" + }, + "iosEnabled": { + "type": "boolean", + "description": "For IOS, get or set whether data from the data sync partner should be used during compliance evaluations" + }, + "androidDeviceBlockedOnMissingPartnerData": { + "type": "boolean", + "description": "For Android, set whether Intune must receive data from the data sync partner prior to marking a device compliant" + }, + "iosDeviceBlockedOnMissingPartnerData": { + "type": "boolean", + "description": "For IOS, set whether Intune must receive data from the data sync partner prior to marking a device compliant" + }, + "partnerUnsupportedOsVersionBlocked": { + "type": "boolean", + "description": "Get or set whether to block devices on the enabled platforms that do not meet the minimum version requirements of the Data Sync Partner" + }, + "partnerUnresponsivenessThresholdInDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Get or Set days the per tenant tolerance to unresponsiveness for this partner integration" + } + }, + "description": "Entity which represents a connection to Mobile threat defense partner." + } + ] + }, + "microsoft.graph.deviceManagementPartner": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceManagementPartner", + "type": "object", + "properties": { + "lastHeartbeatDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Timestamp of last heartbeat after admin enabled option Connect to Device management Partner", + "format": "date-time" + }, + "partnerState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartnerTenantState" + } + ], + "description": "Partner state of this tenant" + }, + "partnerAppType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementPartnerAppType" + } + ], + "description": "Partner App type" + }, + "singleTenantAppId": { + "type": "string", + "description": "Partner Single tenant App id", + "nullable": true + }, + "displayName": { + "type": "string", + "description": "Partner display name", + "nullable": true + }, + "isConfigured": { + "type": "boolean", + "description": "Whether device management partner is configured or not" + }, + "whenPartnerDevicesWillBeRemovedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime in UTC when PartnerDevices will be removed", + "format": "date-time", + "nullable": true + }, + "whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime in UTC when PartnerDevices will be marked as NonCompliant", + "format": "date-time", + "nullable": true + } + }, + "description": "Entity which represents a connection to device management partner." + } + ] + }, + "microsoft.graph.notificationMessageTemplate": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "notificationMessageTemplate", + "type": "object", + "properties": { + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was last modified.", + "format": "date-time" + }, + "displayName": { + "type": "string", + "description": "Display name for the Notification Message Template." + }, + "defaultLocale": { + "type": "string", + "description": "The default locale to fallback onto when the requested locale is not available.", + "nullable": true + }, + "brandingOptions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.notificationTemplateBrandingOptions" + } + ], + "description": "The Message Template Branding Options. Branding is defined in the Intune Admin Console." + }, + "localizedNotificationMessages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.localizedNotificationMessage" + }, + "description": "The list of localized messages for this Notification Message Template." + } + }, + "description": "Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance." + } + ] + }, + "microsoft.graph.roleDefinition": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "roleDefinition", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display Name of the Role definition.", + "nullable": true + }, + "description": { + "type": "string", + "description": "Description of the Role definition.", + "nullable": true + }, + "rolePermissions": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.rolePermission" + } + ], + "nullable": true + }, + "description": "List of Role Permissions this role is allowed to perform. These must match the actionName that is defined as part of the rolePermission." + }, + "isBuiltIn": { + "type": "boolean", + "description": "Type of Role. Set to True if it is built-in, or set to False if it is a custom role definition." + }, + "roleAssignments": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + }, + "description": "List of Role assignments for this role definition." + } + }, + "description": "The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role." + } + ] + }, + "microsoft.graph.roleAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "roleAssignment", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "The display or friendly name of the role Assignment.", + "nullable": true + }, + "description": { + "type": "string", + "description": "Description of the Role Assignment.", + "nullable": true + }, + "resourceScopes": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "List of ids of role scope member security groups. These are IDs from Azure Active Directory." + }, + "roleDefinition": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + } + ], + "description": "Role definition this assignment is part of.", + "nullable": true + } + }, + "description": "The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles." + } + ] + }, + "microsoft.graph.deviceAndAppManagementRoleAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.roleAssignment" + }, + { + "title": "deviceAndAppManagementRoleAssignment", + "type": "object", + "properties": { + "members": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "The list of ids of role member security groups. These are IDs from Azure Active Directory." + } + }, + "description": "The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles." + } + ] + }, + "microsoft.graph.resourceOperation": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "resourceOperation", + "type": "object", + "properties": { + "resourceName": { + "type": "string", + "description": "Name of the Resource this operation is performed on.", + "nullable": true + }, + "actionName": { + "type": "string", + "description": "Type of action this operation is going to perform. The actionName should be concise and limited to as few words as possible.", + "nullable": true + }, + "description": { + "type": "string", + "description": "Description of the resource operation. The description is used in mouse-over text for the operation when shown in the Azure Portal.", + "nullable": true + } + }, + "description": "This defines an operation or action that can be performed on an Intune resource (or entity). Common operations are Read, Delete, Update or Create. These operations provide basic management of the underlying Intune resource itself. In some cases, an Intune resource can have operations that are used by the resource to take action in combination with other resources. For example, the Assign operation is used to assign a MobileApp resource to an AAD security group. Resource operations cannot be modified for built-in roles.This defines an operation or action that can be performed on an Intune resource (or entity). Common operations are Get, List, Delete, Update or Create. These operations provide basic management of the underlying Intune resource itself. In some cases, an Intune resource can have operations that are used by the resource to take action in combination with other resources. For example, the \"Assign\" operation is used to assign a MobileApp resource to an AAD security group. Resource operations cannot be modified for built-in roles." + } + ] + }, + "microsoft.graph.telecomExpenseManagementPartner": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "telecomExpenseManagementPartner", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display name of the TEM partner.", + "nullable": true + }, + "url": { + "type": "string", + "description": "URL of the TEM partner's administrative control panel, where an administrator can configure their TEM service.", + "nullable": true + }, + "appAuthorized": { + "type": "boolean", + "description": "Whether the partner's AAD app has been authorized to access Intune." + }, + "enabled": { + "type": "boolean", + "description": "Whether Intune's connection to the TEM service is currently enabled or disabled." + }, + "lastConnectionDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Timestamp of the last request sent to Intune by the TEM partner.", + "format": "date-time" + } + }, + "description": "telecomExpenseManagementPartner resources represent the metadata and status of a given TEM service. Once your organization has onboarded with a partner, the partner can be enabled or disabled to switch TEM functionality on or off." + } + ] + }, + "microsoft.graph.remoteAssistancePartner": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "remoteAssistancePartner", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display name of the partner.", + "nullable": true + }, + "onboardingUrl": { + "type": "string", + "description": "URL of the partner's onboarding portal, where an administrator can configure their Remote Assistance service.", + "nullable": true + }, + "onboardingStatus": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.remoteAssistanceOnboardingStatus" + } + ], + "description": "TBD" + }, + "lastConnectionDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Timestamp of the last request sent to Intune by the TEM partner.", + "format": "date-time" + } + }, + "description": "remoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service." + } + ] + }, + "microsoft.graph.windowsInformationProtectionAppLearningSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "windowsInformationProtectionAppLearningSummary", + "type": "object", + "properties": { + "applicationName": { + "type": "string", + "description": "Application Name", + "nullable": true + }, + "applicationType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.applicationType" + } + ], + "description": "Application Type" + }, + "deviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device Count" + } + }, + "description": "Windows Information Protection AppLearning Summary entity." + } + ] + }, + "microsoft.graph.windowsInformationProtectionNetworkLearningSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "windowsInformationProtectionNetworkLearningSummary", + "type": "object", + "properties": { + "url": { + "type": "string", + "description": "Website url", + "nullable": true + }, + "deviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device Count" + } + }, + "description": "Windows Information Protection Network learning Summary entity." + } + ] + }, + "microsoft.graph.termsAndConditionsAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "termsAndConditionsAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "Assignment target that the T&C policy is assigned to.", + "nullable": true + } + }, + "description": "A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune." + } + ] + }, + "microsoft.graph.termsAndConditionsAcceptanceStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "termsAndConditionsAcceptanceStatus", + "type": "object", + "properties": { + "userDisplayName": { + "type": "string", + "description": "Display name of the user whose acceptance the entity represents.", + "nullable": true + }, + "acceptedVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Most recent version number of the T&C accepted by the user." + }, + "acceptedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime when the terms were last accepted by the user.", + "format": "date-time" + }, + "termsAndConditions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.termsAndConditions" + } + ], + "description": "Navigation link to the terms and conditions that are assigned.", + "nullable": true + } + }, + "description": "A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal." + } + ] + }, + "microsoft.graph.deviceConfigurationState": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationState", + "type": "object", + "properties": { + "settingStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfigurationSettingState" + } + ], + "nullable": true + } + }, + "displayName": { + "type": "string", + "description": "The name of the policy for this policyBase", + "nullable": true + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The version of the policy" + }, + "platformType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.policyPlatformType" + } + ], + "description": "Platform type that the policy applies to" + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "The compliance state of the policy" + }, + "settingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Count of how many setting a policy holds" + } + }, + "description": "Device Configuration State for a given device." + } + ] + }, + "microsoft.graph.deviceActionResult": { + "title": "deviceActionResult", + "type": "object", + "properties": { + "actionName": { + "type": "string", + "description": "Action name", + "nullable": true + }, + "actionState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.actionState" + } + ], + "description": "State of the action" + }, + "startDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Time the action was initiated", + "format": "date-time" + }, + "lastUpdatedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Time the action state was last updated", + "format": "date-time" + } + } + }, + "microsoft.graph.configurationManagerClientEnabledFeatures": { + "title": "configurationManagerClientEnabledFeatures", + "type": "object", + "properties": { + "inventory": { + "type": "boolean", + "description": "Whether inventory is managed by Intune" + }, + "modernApps": { + "type": "boolean", + "description": "Whether modern application is managed by Intune" + }, + "resourceAccess": { + "type": "boolean", + "description": "Whether resource access is managed by Intune" + }, + "deviceConfiguration": { + "type": "boolean", + "description": "Whether device configuration is managed by Intune" + }, + "compliancePolicy": { + "type": "boolean", + "description": "Whether compliance policy is managed by Intune" + }, + "windowsUpdateForBusiness": { + "type": "boolean", + "description": "Whether Windows Update for Business is managed by Intune" + } + } + }, + "microsoft.graph.deviceHealthAttestationState": { + "title": "deviceHealthAttestationState", + "type": "object", + "properties": { + "lastUpdateDateTime": { + "type": "string", + "description": "The Timestamp of the last update.", + "nullable": true + }, + "contentNamespaceUrl": { + "type": "string", + "description": "The DHA report version. (Namespace version)", + "nullable": true + }, + "deviceHealthAttestationStatus": { + "type": "string", + "description": "The DHA report version. (Namespace version)", + "nullable": true + }, + "contentVersion": { + "type": "string", + "description": "The HealthAttestation state schema version", + "nullable": true + }, + "issuedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device was evaluated or issued to MDM", + "format": "date-time" + }, + "attestationIdentityKey": { + "type": "string", + "description": "TWhen an Attestation Identity Key (AIK) is present on a device, it indicates that the device has an endorsement key (EK) certificate.", + "nullable": true + }, + "resetCount": { + "type": "integer", + "description": "The number of times a PC device has hibernated or resumed", + "format": "int64" + }, + "restartCount": { + "type": "integer", + "description": "The number of times a PC device has rebooted", + "format": "int64" + }, + "dataExcutionPolicy": { + "type": "string", + "description": "DEP Policy defines a set of hardware and software technologies that perform additional checks on memory ", + "nullable": true + }, + "bitLockerStatus": { + "type": "string", + "description": "On or Off of BitLocker Drive Encryption", + "nullable": true + }, + "bootManagerVersion": { + "type": "string", + "description": "The version of the Boot Manager", + "nullable": true + }, + "codeIntegrityCheckVersion": { + "type": "string", + "description": "The version of the Boot Manager", + "nullable": true + }, + "secureBoot": { + "type": "string", + "description": "When Secure Boot is enabled, the core components must have the correct cryptographic signatures", + "nullable": true + }, + "bootDebugging": { + "type": "string", + "description": "When bootDebugging is enabled, the device is used in development and testing", + "nullable": true + }, + "operatingSystemKernelDebugging": { + "type": "string", + "description": "When operatingSystemKernelDebugging is enabled, the device is used in development and testing", + "nullable": true + }, + "codeIntegrity": { + "type": "string", + "description": " When code integrity is enabled, code execution is restricted to integrity verified code", + "nullable": true + }, + "testSigning": { + "type": "string", + "description": "When test signing is allowed, the device does not enforce signature validation during boot", + "nullable": true + }, + "safeMode": { + "type": "string", + "description": "Safe mode is a troubleshooting option for Windows that starts your computer in a limited state", + "nullable": true + }, + "windowsPE": { + "type": "string", + "description": "Operating system running with limited services that is used to prepare a computer for Windows", + "nullable": true + }, + "earlyLaunchAntiMalwareDriverProtection": { + "type": "string", + "description": "ELAM provides protection for the computers in your network when they start up", + "nullable": true + }, + "virtualSecureMode": { + "type": "string", + "description": "VSM is a container that protects high value assets from a compromised kernel", + "nullable": true + }, + "pcrHashAlgorithm": { + "type": "string", + "description": "Informational attribute that identifies the HASH algorithm that was used by TPM", + "nullable": true + }, + "bootAppSecurityVersion": { + "type": "string", + "description": "The security version number of the Boot Application", + "nullable": true + }, + "bootManagerSecurityVersion": { + "type": "string", + "description": "The security version number of the Boot Application", + "nullable": true + }, + "tpmVersion": { + "type": "string", + "description": "The security version number of the Boot Application", + "nullable": true + }, + "pcr0": { + "type": "string", + "description": "The measurement that is captured in PCR[0]", + "nullable": true + }, + "secureBootConfigurationPolicyFingerPrint": { + "type": "string", + "description": "Fingerprint of the Custom Secure Boot Configuration Policy", + "nullable": true + }, + "codeIntegrityPolicy": { + "type": "string", + "description": "The Code Integrity policy that is controlling the security of the boot environment", + "nullable": true + }, + "bootRevisionListInfo": { + "type": "string", + "description": "The Boot Revision List that was loaded during initial boot on the attested device", + "nullable": true + }, + "operatingSystemRevListInfo": { + "type": "string", + "description": "The Operating System Revision List that was loaded during initial boot on the attested device", + "nullable": true + }, + "healthStatusMismatchInfo": { + "type": "string", + "description": "This attribute appears if DHA-Service detects an integrity issue", + "nullable": true + }, + "healthAttestationSupportedStatus": { + "type": "string", + "description": "This attribute indicates if DHA is supported for the device", + "nullable": true + } + } + }, + "microsoft.graph.deviceCompliancePolicyState": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceCompliancePolicyState", + "type": "object", + "properties": { + "settingStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingState" + } + ], + "nullable": true + } + }, + "displayName": { + "type": "string", + "description": "The name of the policy for this policyBase", + "nullable": true + }, + "version": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The version of the policy" + }, + "platformType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.policyPlatformType" + } + ], + "description": "Platform type that the policy applies to" + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "The compliance state of the policy" + }, + "settingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Count of how many setting a policy holds" + } + }, + "description": "Device Compliance Policy State for a given device." + } + ] + }, + "microsoft.graph.updateWindowsDeviceAccountActionParameter": { + "title": "updateWindowsDeviceAccountActionParameter", + "type": "object", + "properties": { + "deviceAccount": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsDeviceAccount" + } + ], + "nullable": true + }, + "passwordRotationEnabled": { + "type": "boolean", + "nullable": true + }, + "calendarSyncEnabled": { + "type": "boolean", + "nullable": true + }, + "deviceAccountEmail": { + "type": "string", + "nullable": true + }, + "exchangeServer": { + "type": "string", + "nullable": true + }, + "sessionInitiationProtocalAddress": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.windowsDeviceAccount": { + "title": "windowsDeviceAccount", + "type": "object", + "properties": { + "password": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.windowsDefenderScanActionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceActionResult" + }, + { + "title": "windowsDefenderScanActionResult", + "type": "object", + "properties": { + "scanType": { + "type": "string", + "description": "Scan type either full scan or quick scan", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deleteUserFromSharedAppleDeviceActionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceActionResult" + }, + { + "title": "deleteUserFromSharedAppleDeviceActionResult", + "type": "object", + "properties": { + "userPrincipalName": { + "type": "string", + "description": "User principal name of the user to be deleted", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceGeoLocation": { + "title": "deviceGeoLocation", + "type": "object", + "properties": { + "lastCollectedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Time at which location was recorded, relative to UTC", + "format": "date-time" + }, + "longitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Longitude coordinate of the device's location", + "format": "double" + }, + "latitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Latitude coordinate of the device's location", + "format": "double" + }, + "altitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Altitude, given in meters above sea level", + "format": "double" + }, + "horizontalAccuracy": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Accuracy of longitude and latitude in meters", + "format": "double" + }, + "verticalAccuracy": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Accuracy of altitude in meters", + "format": "double" + }, + "heading": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Heading in degrees from true north", + "format": "double" + }, + "speed": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Speed the device is traveling in meters per second", + "format": "double" + } + } + }, + "microsoft.graph.locateDeviceActionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceActionResult" + }, + { + "title": "locateDeviceActionResult", + "type": "object", + "properties": { + "deviceLocation": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceGeoLocation" + } + ], + "description": "device location", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.remoteLockActionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceActionResult" + }, + { + "title": "remoteLockActionResult", + "type": "object", + "properties": { + "unlockPin": { + "type": "string", + "description": "Pin to unlock the client", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.resetPasscodeActionResult": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceActionResult" + }, + { + "title": "resetPasscodeActionResult", + "type": "object", + "properties": { + "passcode": { + "type": "string", + "description": "Newly generated passcode for the device ", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceOperatingSystemSummary": { + "title": "deviceOperatingSystemSummary", + "type": "object", + "properties": { + "androidCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of android device count.", + "format": "int32" + }, + "iosCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of iOS device count.", + "format": "int32" + }, + "macOSCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Mac OS X device count.", + "format": "int32" + }, + "windowsMobileCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Windows mobile device count.", + "format": "int32" + }, + "windowsCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Windows device count.", + "format": "int32" + }, + "unknownCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of unknown device count.", + "format": "int32" + } + } + }, + "microsoft.graph.deviceExchangeAccessStateSummary": { + "title": "deviceExchangeAccessStateSummary", + "type": "object", + "properties": { + "allowedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total count of devices with Exchange Access State: Allowed.", + "format": "int32" + }, + "blockedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total count of devices with Exchange Access State: Blocked.", + "format": "int32" + }, + "quarantinedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total count of devices with Exchange Access State: Quarantined.", + "format": "int32" + }, + "unknownDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total count of devices with Exchange Access State: Unknown.", + "format": "int32" + }, + "unavailableDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total count of devices for which no Exchange Access State could be found.", + "format": "int32" + } + } + }, + "microsoft.graph.windowsDeviceADAccount": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsDeviceAccount" + }, + { + "title": "windowsDeviceADAccount", + "type": "object", + "properties": { + "domainName": { + "type": "string", + "nullable": true + }, + "userName": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.windowsDeviceAzureADAccount": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsDeviceAccount" + }, + { + "title": "windowsDeviceAzureADAccount", + "type": "object", + "properties": { + "userPrincipalName": { + "type": "string", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceConfigurationAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "The assignment target for the device configuration.", + "nullable": true + } + }, + "description": "The device configuration assignment entity assigns an AAD group to a specific device configuration." + } + ] + }, + "microsoft.graph.deviceConfigurationDeviceStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationDeviceStatus", + "type": "object", + "properties": { + "deviceDisplayName": { + "type": "string", + "description": "Device name of the DevicePolicyStatus.", + "nullable": true + }, + "userName": { + "type": "string", + "description": "The User Name that is being reported", + "nullable": true + }, + "deviceModel": { + "type": "string", + "description": "The device model that is being reported", + "nullable": true + }, + "complianceGracePeriodExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device compliance grace period expires", + "format": "date-time" + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceConfigurationUserStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationUserStatus", + "type": "object", + "properties": { + "userDisplayName": { + "type": "string", + "description": "User name of the DevicePolicyStatus.", + "nullable": true + }, + "devicesCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Devices count for that user." + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceConfigurationDeviceOverview": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationDeviceOverview", + "type": "object", + "properties": { + "pendingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of pending devices" + }, + "notApplicableCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices" + }, + "successCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of succeeded devices" + }, + "errorCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error devices" + }, + "failedCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of failed devices" + }, + "lastUpdateDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last update time", + "format": "date-time" + }, + "configurationVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the policy for that overview" + } + } + } + ] + }, + "microsoft.graph.deviceConfigurationUserOverview": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceConfigurationUserOverview", + "type": "object", + "properties": { + "pendingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of pending Users" + }, + "notApplicableCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable users" + }, + "successCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of succeeded Users" + }, + "errorCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error Users" + }, + "failedCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of failed Users" + }, + "lastUpdateDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last update time", + "format": "date-time" + }, + "configurationVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the policy for that overview" + } + } + } + ] + }, + "microsoft.graph.settingStateDeviceSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "settingStateDeviceSummary", + "type": "object", + "properties": { + "settingName": { + "type": "string", + "description": "Name of the setting", + "nullable": true + }, + "instancePath": { + "type": "string", + "description": "Name of the InstancePath for the setting", + "nullable": true + }, + "unknownDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device Unkown count for the setting" + }, + "notApplicableDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device Not Applicable count for the setting" + }, + "compliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device Compliant count for the setting" + }, + "remediatedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device Compliant count for the setting" + }, + "nonCompliantDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device NonCompliant count for the setting" + }, + "errorDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device error count for the setting" + }, + "conflictDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Device conflict error count for the setting" + } + }, + "description": "Device Compilance Policy and Configuration for a Setting State summary" + } + ] + }, + "microsoft.graph.deviceCompliancePolicyAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceCompliancePolicyAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "Target for the compliance policy assignment.", + "nullable": true + } + }, + "description": "Device compliance policy assignment." + } + ] + }, + "microsoft.graph.deviceComplianceScheduledActionForRule": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceScheduledActionForRule", + "type": "object", + "properties": { + "ruleName": { + "type": "string", + "description": "Name of the rule which this scheduled action applies to.", + "nullable": true + }, + "scheduledActionConfigurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionItem" + }, + "description": "The list of scheduled action configurations for this compliance policy." + } + }, + "description": "Scheduled Action for Rule" + } + ] + }, + "microsoft.graph.deviceComplianceDeviceStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceDeviceStatus", + "type": "object", + "properties": { + "deviceDisplayName": { + "type": "string", + "description": "Device name of the DevicePolicyStatus.", + "nullable": true + }, + "userName": { + "type": "string", + "description": "The User Name that is being reported", + "nullable": true + }, + "deviceModel": { + "type": "string", + "description": "The device model that is being reported", + "nullable": true + }, + "complianceGracePeriodExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device compliance grace period expires", + "format": "date-time" + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceComplianceUserStatus": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceUserStatus", + "type": "object", + "properties": { + "userDisplayName": { + "type": "string", + "description": "User name of the DevicePolicyStatus.", + "nullable": true + }, + "devicesCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Devices count for that user." + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "Compliance status of the policy report." + }, + "lastReportedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last modified date time of the policy report.", + "format": "date-time" + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceComplianceDeviceOverview": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceDeviceOverview", + "type": "object", + "properties": { + "pendingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of pending devices" + }, + "notApplicableCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable devices" + }, + "successCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of succeeded devices" + }, + "errorCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error devices" + }, + "failedCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of failed devices" + }, + "lastUpdateDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last update time", + "format": "date-time" + }, + "configurationVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the policy for that overview" + } + } + } + ] + }, + "microsoft.graph.deviceComplianceUserOverview": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceUserOverview", + "type": "object", + "properties": { + "pendingCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of pending Users" + }, + "notApplicableCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of not applicable users" + }, + "successCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of succeeded Users" + }, + "errorCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of error Users" + }, + "failedCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of failed Users" + }, + "lastUpdateDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last update time", + "format": "date-time" + }, + "configurationVersion": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Version of the policy for that overview" + } + } + } + ] + }, + "microsoft.graph.deviceComplianceActionItem": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceActionItem", + "type": "object", + "properties": { + "gracePeriodHours": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of hours to wait till the action will be enforced. Valid values 0 to 8760" + }, + "actionType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceComplianceActionType" + } + ], + "description": "What action to take" + }, + "notificationTemplateId": { + "type": "string", + "description": "What notification Message template to use", + "nullable": true + }, + "notificationMessageCCList": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "A list of group IDs to speicify who to CC this notification message to." + } + }, + "description": "Scheduled Action Configuration" + } + ] + }, + "microsoft.graph.appListItem": { + "title": "appListItem", + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The application name" + }, + "publisher": { + "type": "string", + "description": "The publisher of the application", + "nullable": true + }, + "appStoreUrl": { + "type": "string", + "description": "The Store URL of the application", + "nullable": true + }, + "appId": { + "type": "string", + "description": "The application or bundle identifier of the application", + "nullable": true + } + } + }, + "microsoft.graph.androidCustomConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "androidCustomConfiguration", + "type": "object", + "properties": { + "omaSettings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + } + ], + "nullable": true + }, + "description": "OMA settings. This collection can contain a maximum of 1000 elements." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidCustomConfiguration resource." + } + ] + }, + "microsoft.graph.omaSetting": { + "title": "omaSetting", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display Name." + }, + "description": { + "type": "string", + "description": "Description.", + "nullable": true + }, + "omaUri": { + "type": "string", + "description": "OMA." + } + } + }, + "microsoft.graph.omaSettingInteger": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingInteger", + "type": "object", + "properties": { + "value": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Value." + } + } + } + ] + }, + "microsoft.graph.omaSettingFloatingPoint": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingFloatingPoint", + "type": "object", + "properties": { + "value": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "description": "Value.", + "format": "float" + } + } + } + ] + }, + "microsoft.graph.omaSettingString": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingString", + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "Value." + } + } + } + ] + }, + "microsoft.graph.omaSettingDateTime": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingDateTime", + "type": "object", + "properties": { + "value": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Value.", + "format": "date-time" + } + } + } + ] + }, + "microsoft.graph.omaSettingStringXml": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingStringXml", + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "File name associated with the Value property (*.xml).", + "nullable": true + }, + "value": { + "type": "string", + "description": "Value. (UTF8 encoded byte array)", + "format": "base64url" + } + } + } + ] + }, + "microsoft.graph.omaSettingBoolean": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingBoolean", + "type": "object", + "properties": { + "value": { + "type": "boolean", + "description": "Value." + } + } + } + ] + }, + "microsoft.graph.omaSettingBase64": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + }, + { + "title": "omaSettingBase64", + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "File name associated with the Value property (*.cer | *.crt | *.p7b | *.bin).", + "nullable": true + }, + "value": { + "type": "string", + "description": "Value. (Base64 encoded string)" + } + } + } + ] + }, + "microsoft.graph.androidGeneralDeviceConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "androidGeneralDeviceConfiguration", + "type": "object", + "properties": { + "appsBlockClipboardSharing": { + "type": "boolean", + "description": "Indicates whether or not to block clipboard sharing to copy and paste between applications." + }, + "appsBlockCopyPaste": { + "type": "boolean", + "description": "Indicates whether or not to block copy and paste within applications." + }, + "appsBlockYouTube": { + "type": "boolean", + "description": "Indicates whether or not to block the YouTube app." + }, + "bluetoothBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block Bluetooth." + }, + "cameraBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the use of the camera." + }, + "cellularBlockDataRoaming": { + "type": "boolean", + "description": "Indicates whether or not to block data roaming." + }, + "cellularBlockMessaging": { + "type": "boolean", + "description": "Indicates whether or not to block SMS/MMS messaging." + }, + "cellularBlockVoiceRoaming": { + "type": "boolean", + "description": "Indicates whether or not to block voice roaming." + }, + "cellularBlockWiFiTethering": { + "type": "boolean", + "description": "Indicates whether or not to block syncing Wi-Fi tethering." + }, + "compliantAppsList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps in the compliance (either allow list or block list, controlled by CompliantAppListType). This collection can contain a maximum of 10000 elements." + }, + "compliantAppListType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListType" + } + ], + "description": "Type of list that is in the CompliantAppsList." + }, + "diagnosticDataBlockSubmission": { + "type": "boolean", + "description": "Indicates whether or not to block diagnostic data submission." + }, + "locationServicesBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block location services." + }, + "googleAccountBlockAutoSync": { + "type": "boolean", + "description": "Indicates whether or not to block Google account auto sync." + }, + "googlePlayStoreBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the Google Play store." + }, + "kioskModeBlockSleepButton": { + "type": "boolean", + "description": "Indicates whether or not to block the screen sleep button while in Kiosk Mode." + }, + "kioskModeBlockVolumeButtons": { + "type": "boolean", + "description": "Indicates whether or not to block the volume buttons while in Kiosk Mode." + }, + "kioskModeApps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "A list of apps that will be allowed to run when the device is in Kiosk Mode. This collection can contain a maximum of 500 elements." + }, + "nfcBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block Near-Field Communication." + }, + "passwordBlockFingerprintUnlock": { + "type": "boolean", + "description": "Indicates whether or not to block fingerprint unlock." + }, + "passwordBlockTrustAgents": { + "type": "boolean", + "description": "Indicates whether or not to block Smart Lock and other trust agents." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires. Valid values 1 to 365", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passwords. Valid values 4 to 16", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before the screen times out.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block. Valid values 0 to 24", + "nullable": true + }, + "passwordSignInFailureCountBeforeFactoryReset": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of sign in failures allowed before factory reset. Valid values 4 to 11", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidRequiredPasswordType" + } + ], + "description": "Type of password that is required." + }, + "passwordRequired": { + "type": "boolean", + "description": "Indicates whether or not to require a password." + }, + "powerOffBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block powering off the device." + }, + "factoryResetBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block user performing a factory reset." + }, + "screenCaptureBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block screenshots." + }, + "deviceSharingAllowed": { + "type": "boolean", + "description": "Indicates whether or not to allow device sharing mode." + }, + "storageBlockGoogleBackup": { + "type": "boolean", + "description": "Indicates whether or not to block Google Backup." + }, + "storageBlockRemovableStorage": { + "type": "boolean", + "description": "Indicates whether or not to block removable storage usage." + }, + "storageRequireDeviceEncryption": { + "type": "boolean", + "description": "Indicates whether or not to require device encryption." + }, + "storageRequireRemovableStorageEncryption": { + "type": "boolean", + "description": "Indicates whether or not to require removable storage encryption." + }, + "voiceAssistantBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the use of the Voice Assistant." + }, + "voiceDialingBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block voice dialing." + }, + "webBrowserBlockPopups": { + "type": "boolean", + "description": "Indicates whether or not to block popups within the web browser." + }, + "webBrowserBlockAutofill": { + "type": "boolean", + "description": "Indicates whether or not to block the web browser's auto fill feature." + }, + "webBrowserBlockJavaScript": { + "type": "boolean", + "description": "Indicates whether or not to block JavaScript within the web browser." + }, + "webBrowserBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the web browser." + }, + "webBrowserCookieSettings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.webBrowserCookieSettings" + } + ], + "description": "Cookie settings within the web browser." + }, + "wiFiBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block syncing Wi-Fi." + }, + "appsInstallAllowList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps which can be installed on the KNOX device. This collection can contain a maximum of 500 elements." + }, + "appsLaunchBlockList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps which are blocked from being launched on the KNOX device. This collection can contain a maximum of 500 elements." + }, + "appsHideList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps to be hidden on the KNOX device. This collection can contain a maximum of 500 elements." + }, + "securityRequireVerifyApps": { + "type": "boolean", + "description": "Require the Android Verify apps feature is turned on." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidGeneralDeviceConfiguration resource." + } + ] + }, + "microsoft.graph.androidWorkProfileCustomConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "androidWorkProfileCustomConfiguration", + "type": "object", + "properties": { + "omaSettings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + } + ], + "nullable": true + }, + "description": "OMA settings. This collection can contain a maximum of 500 elements." + } + }, + "description": "Android Work Profile custom configuration" + } + ] + }, + "microsoft.graph.androidWorkProfileGeneralDeviceConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "androidWorkProfileGeneralDeviceConfiguration", + "type": "object", + "properties": { + "passwordBlockFingerprintUnlock": { + "type": "boolean", + "description": "Indicates whether or not to block fingerprint unlock." + }, + "passwordBlockTrustAgents": { + "type": "boolean", + "description": "Indicates whether or not to block Smart Lock and other trust agents." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires. Valid values 1 to 365", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passwords. Valid values 4 to 16", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before the screen times out.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block. Valid values 0 to 24", + "nullable": true + }, + "passwordSignInFailureCountBeforeFactoryReset": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of sign in failures allowed before factory reset. Valid values 4 to 11", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidWorkProfileRequiredPasswordType" + } + ], + "description": "Type of password that is required." + }, + "workProfileDataSharingType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidWorkProfileCrossProfileDataSharingType" + } + ], + "description": "Type of data sharing that is allowed." + }, + "workProfileBlockNotificationsWhileDeviceLocked": { + "type": "boolean", + "description": "Indicates whether or not to block notifications while device locked." + }, + "workProfileBlockAddingAccounts": { + "type": "boolean", + "description": "Block users from adding/removing accounts in work profile." + }, + "workProfileBluetoothEnableContactSharing": { + "type": "boolean", + "description": "Allow bluetooth devices to access enterprise contacts." + }, + "workProfileBlockScreenCapture": { + "type": "boolean", + "description": "Block screen capture in work profile." + }, + "workProfileBlockCrossProfileCallerId": { + "type": "boolean", + "description": "Block display work profile caller ID in personal profile." + }, + "workProfileBlockCamera": { + "type": "boolean", + "description": "Block work profile camera." + }, + "workProfileBlockCrossProfileContactsSearch": { + "type": "boolean", + "description": "Block work profile contacts availability in personal profile." + }, + "workProfileBlockCrossProfileCopyPaste": { + "type": "boolean", + "description": "Boolean that indicates if the setting disallow cross profile copy/paste is enabled." + }, + "workProfileDefaultAppPermissionPolicy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidWorkProfileDefaultAppPermissionPolicyType" + } + ], + "description": "Type of password that is required." + }, + "workProfilePasswordBlockFingerprintUnlock": { + "type": "boolean", + "description": "Indicates whether or not to block fingerprint unlock for work profile." + }, + "workProfilePasswordBlockTrustAgents": { + "type": "boolean", + "description": "Indicates whether or not to block Smart Lock and other trust agents for work profile." + }, + "workProfilePasswordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the work profile password expires. Valid values 1 to 365", + "nullable": true + }, + "workProfilePasswordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of work profile password. Valid values 4 to 16", + "nullable": true + }, + "workProfilePasswordMinNumericCharacters": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum # of numeric characters required in work profile password. Valid values 1 to 10", + "nullable": true + }, + "workProfilePasswordMinNonLetterCharacters": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum # of non-letter characters required in work profile password. Valid values 1 to 10", + "nullable": true + }, + "workProfilePasswordMinLetterCharacters": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum # of letter characters required in work profile password. Valid values 1 to 10", + "nullable": true + }, + "workProfilePasswordMinLowerCaseCharacters": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum # of lower-case characters required in work profile password. Valid values 1 to 10", + "nullable": true + }, + "workProfilePasswordMinUpperCaseCharacters": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum # of upper-case characters required in work profile password. Valid values 1 to 10", + "nullable": true + }, + "workProfilePasswordMinSymbolCharacters": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum # of symbols required in work profile password. Valid values 1 to 10", + "nullable": true + }, + "workProfilePasswordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before the screen times out.", + "nullable": true + }, + "workProfilePasswordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous work profile passwords to block. Valid values 0 to 24", + "nullable": true + }, + "workProfilePasswordSignInFailureCountBeforeFactoryReset": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of sign in failures allowed before work profile is removed and all corporate data deleted. Valid values 4 to 11", + "nullable": true + }, + "workProfilePasswordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidWorkProfileRequiredPasswordType" + } + ], + "description": "Type of work profile password that is required." + }, + "workProfileRequirePassword": { + "type": "boolean", + "description": "Password is required or not for work profile" + }, + "securityRequireVerifyApps": { + "type": "boolean", + "description": "Require the Android Verify apps feature is turned on." + } + }, + "description": "Android Work Profile general device configuration." + } + ] + }, + "microsoft.graph.iosCertificateProfile": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "iosCertificateProfile", + "type": "object", + "description": "Device Configuration." + } + ] + }, + "microsoft.graph.iosCustomConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "iosCustomConfiguration", + "type": "object", + "properties": { + "payloadName": { + "type": "string", + "description": "Name that is displayed to the user." + }, + "payloadFileName": { + "type": "string", + "description": "Payload file name (*.mobileconfig | *.xml).", + "nullable": true + }, + "payload": { + "type": "string", + "description": "Payload. (UTF8 encoded byte array)", + "format": "base64url" + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the iosCustomConfiguration resource." + } + ] + }, + "microsoft.graph.iosGeneralDeviceConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "iosGeneralDeviceConfiguration", + "type": "object", + "properties": { + "accountBlockModification": { + "type": "boolean", + "description": "Indicates whether or not to allow account modification when the device is in supervised mode." + }, + "activationLockAllowWhenSupervised": { + "type": "boolean", + "description": "Indicates whether or not to allow activation lock when the device is in the supervised mode." + }, + "airDropBlocked": { + "type": "boolean", + "description": "Indicates whether or not to allow AirDrop when the device is in supervised mode." + }, + "airDropForceUnmanagedDropTarget": { + "type": "boolean", + "description": "Indicates whether or not to cause AirDrop to be considered an unmanaged drop target (iOS 9.0 and later)." + }, + "airPlayForcePairingPasswordForOutgoingRequests": { + "type": "boolean", + "description": "Indicates whether or not to enforce all devices receiving AirPlay requests from this device to use a pairing password." + }, + "appleWatchBlockPairing": { + "type": "boolean", + "description": "Indicates whether or not to allow Apple Watch pairing when the device is in supervised mode (iOS 9.0 and later)." + }, + "appleWatchForceWristDetection": { + "type": "boolean", + "description": "Indicates whether or not to force a paired Apple Watch to use Wrist Detection (iOS 8.2 and later)." + }, + "appleNewsBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using News when the device is in supervised mode (iOS 9.0 and later)." + }, + "appsSingleAppModeList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "Gets or sets the list of iOS apps allowed to autonomously enter Single App Mode. Supervised only. iOS 7.0 and later. This collection can contain a maximum of 500 elements." + }, + "appsVisibilityList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps in the visibility list (either visible/launchable apps list or hidden/unlaunchable apps list, controlled by AppsVisibilityListType) (iOS 9.3 and later). This collection can contain a maximum of 10000 elements." + }, + "appsVisibilityListType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListType" + } + ], + "description": "Type of list that is in the AppsVisibilityList." + }, + "appStoreBlockAutomaticDownloads": { + "type": "boolean", + "description": "Indicates whether or not to block the automatic downloading of apps purchased on other devices when the device is in supervised mode (iOS 9.0 and later)." + }, + "appStoreBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using the App Store." + }, + "appStoreBlockInAppPurchases": { + "type": "boolean", + "description": "Indicates whether or not to block the user from making in app purchases." + }, + "appStoreBlockUIAppInstallation": { + "type": "boolean", + "description": "Indicates whether or not to block the App Store app, not restricting installation through Host apps. Applies to supervised mode only (iOS 9.0 and later)." + }, + "appStoreRequirePassword": { + "type": "boolean", + "description": "Indicates whether or not to require a password when using the app store." + }, + "bluetoothBlockModification": { + "type": "boolean", + "description": "Indicates whether or not to allow modification of Bluetooth settings when the device is in supervised mode (iOS 10.0 and later)." + }, + "cameraBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from accessing the camera of the device." + }, + "cellularBlockDataRoaming": { + "type": "boolean", + "description": "Indicates whether or not to block data roaming." + }, + "cellularBlockGlobalBackgroundFetchWhileRoaming": { + "type": "boolean", + "description": "Indicates whether or not to block global background fetch while roaming." + }, + "cellularBlockPerAppDataModification": { + "type": "boolean", + "description": "Indicates whether or not to allow changes to cellular app data usage settings when the device is in supervised mode." + }, + "cellularBlockPersonalHotspot": { + "type": "boolean", + "description": "Indicates whether or not to block Personal Hotspot." + }, + "cellularBlockVoiceRoaming": { + "type": "boolean", + "description": "Indicates whether or not to block voice roaming." + }, + "certificatesBlockUntrustedTlsCertificates": { + "type": "boolean", + "description": "Indicates whether or not to block untrusted TLS certificates." + }, + "classroomAppBlockRemoteScreenObservation": { + "type": "boolean", + "description": "Indicates whether or not to allow remote screen observation by Classroom app when the device is in supervised mode (iOS 9.3 and later)." + }, + "classroomAppForceUnpromptedScreenObservation": { + "type": "boolean", + "description": "Indicates whether or not to automatically give permission to the teacher of a managed course on the Classroom app to view a student's screen without prompting when the device is in supervised mode." + }, + "compliantAppsList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps in the compliance (either allow list or block list, controlled by CompliantAppListType). This collection can contain a maximum of 10000 elements." + }, + "compliantAppListType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListType" + } + ], + "description": "List that is in the AppComplianceList." + }, + "configurationProfileBlockChanges": { + "type": "boolean", + "description": "Indicates whether or not to block the user from installing configuration profiles and certificates interactively when the device is in supervised mode." + }, + "definitionLookupBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block definition lookup when the device is in supervised mode (iOS 8.1.3 and later )." + }, + "deviceBlockEnableRestrictions": { + "type": "boolean", + "description": "Indicates whether or not to allow the user to enables restrictions in the device settings when the device is in supervised mode." + }, + "deviceBlockEraseContentAndSettings": { + "type": "boolean", + "description": "Indicates whether or not to allow the use of the 'Erase all content and settings' option on the device when the device is in supervised mode." + }, + "deviceBlockNameModification": { + "type": "boolean", + "description": "Indicates whether or not to allow device name modification when the device is in supervised mode (iOS 9.0 and later)." + }, + "diagnosticDataBlockSubmission": { + "type": "boolean", + "description": "Indicates whether or not to block diagnostic data submission." + }, + "diagnosticDataBlockSubmissionModification": { + "type": "boolean", + "description": "Indicates whether or not to allow diagnostics submission settings modification when the device is in supervised mode (iOS 9.3.2 and later)." + }, + "documentsBlockManagedDocumentsInUnmanagedApps": { + "type": "boolean", + "description": "Indicates whether or not to block the user from viewing managed documents in unmanaged apps." + }, + "documentsBlockUnmanagedDocumentsInManagedApps": { + "type": "boolean", + "description": "Indicates whether or not to block the user from viewing unmanaged documents in managed apps." + }, + "emailInDomainSuffixes": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "An email address lacking a suffix that matches any of these strings will be considered out-of-domain." + }, + "enterpriseAppBlockTrust": { + "type": "boolean", + "description": "Indicates whether or not to block the user from trusting an enterprise app." + }, + "enterpriseAppBlockTrustModification": { + "type": "boolean", + "description": "Indicates whether or not to block the user from modifying the enterprise app trust settings." + }, + "faceTimeBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using FaceTime." + }, + "findMyFriendsBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block Find My Friends when the device is in supervised mode." + }, + "gamingBlockGameCenterFriends": { + "type": "boolean", + "description": "Indicates whether or not to block the user from having friends in Game Center." + }, + "gamingBlockMultiplayer": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using multiplayer gaming." + }, + "gameCenterBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using Game Center when the device is in supervised mode." + }, + "hostPairingBlocked": { + "type": "boolean", + "description": "indicates whether or not to allow host pairing to control the devices an iOS device can pair with when the iOS device is in supervised mode." + }, + "iBooksStoreBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using the iBooks Store when the device is in supervised mode." + }, + "iBooksStoreBlockErotica": { + "type": "boolean", + "description": "Indicates whether or not to block the user from downloading media from the iBookstore that has been tagged as erotica." + }, + "iCloudBlockActivityContinuation": { + "type": "boolean", + "description": "Indicates whether or not to block the the user from continuing work they started on iOS device to another iOS or macOS device." + }, + "iCloudBlockBackup": { + "type": "boolean", + "description": "Indicates whether or not to block iCloud backup." + }, + "iCloudBlockDocumentSync": { + "type": "boolean", + "description": "Indicates whether or not to block iCloud document sync." + }, + "iCloudBlockManagedAppsSync": { + "type": "boolean", + "description": "Indicates whether or not to block Managed Apps Cloud Sync." + }, + "iCloudBlockPhotoLibrary": { + "type": "boolean", + "description": "Indicates whether or not to block iCloud Photo Library." + }, + "iCloudBlockPhotoStreamSync": { + "type": "boolean", + "description": "Indicates whether or not to block iCloud Photo Stream Sync." + }, + "iCloudBlockSharedPhotoStream": { + "type": "boolean", + "description": "Indicates whether or not to block Shared Photo Stream." + }, + "iCloudRequireEncryptedBackup": { + "type": "boolean", + "description": "Indicates whether or not to require backups to iCloud be encrypted." + }, + "iTunesBlockExplicitContent": { + "type": "boolean", + "description": "Indicates whether or not to block the user from accessing explicit content in iTunes and the App Store." + }, + "iTunesBlockMusicService": { + "type": "boolean", + "description": "Indicates whether or not to block Music service and revert Music app to classic mode when the device is in supervised mode (iOS 9.3 and later and macOS 10.12 and later)." + }, + "iTunesBlockRadio": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using iTunes Radio when the device is in supervised mode (iOS 9.3 and later)." + }, + "keyboardBlockAutoCorrect": { + "type": "boolean", + "description": "Indicates whether or not to block keyboard auto-correction when the device is in supervised mode (iOS 8.1.3 and later)." + }, + "keyboardBlockDictation": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using dictation input when the device is in supervised mode." + }, + "keyboardBlockPredictive": { + "type": "boolean", + "description": "Indicates whether or not to block predictive keyboards when device is in supervised mode (iOS 8.1.3 and later)." + }, + "keyboardBlockShortcuts": { + "type": "boolean", + "description": "Indicates whether or not to block keyboard shortcuts when the device is in supervised mode (iOS 9.0 and later)." + }, + "keyboardBlockSpellCheck": { + "type": "boolean", + "description": "Indicates whether or not to block keyboard spell-checking when the device is in supervised mode (iOS 8.1.3 and later)." + }, + "kioskModeAllowAssistiveSpeak": { + "type": "boolean", + "description": "Indicates whether or not to allow assistive speak while in kiosk mode." + }, + "kioskModeAllowAssistiveTouchSettings": { + "type": "boolean", + "description": "Indicates whether or not to allow access to the Assistive Touch Settings while in kiosk mode." + }, + "kioskModeAllowAutoLock": { + "type": "boolean", + "description": "Indicates whether or not to allow device auto lock while in kiosk mode." + }, + "kioskModeAllowColorInversionSettings": { + "type": "boolean", + "description": "Indicates whether or not to allow access to the Color Inversion Settings while in kiosk mode." + }, + "kioskModeAllowRingerSwitch": { + "type": "boolean", + "description": "Indicates whether or not to allow use of the ringer switch while in kiosk mode." + }, + "kioskModeAllowScreenRotation": { + "type": "boolean", + "description": "Indicates whether or not to allow screen rotation while in kiosk mode." + }, + "kioskModeAllowSleepButton": { + "type": "boolean", + "description": "Indicates whether or not to allow use of the sleep button while in kiosk mode." + }, + "kioskModeAllowTouchscreen": { + "type": "boolean", + "description": "Indicates whether or not to allow use of the touchscreen while in kiosk mode." + }, + "kioskModeAllowVoiceOverSettings": { + "type": "boolean", + "description": "Indicates whether or not to allow access to the voice over settings while in kiosk mode." + }, + "kioskModeAllowVolumeButtons": { + "type": "boolean", + "description": "Indicates whether or not to allow use of the volume buttons while in kiosk mode." + }, + "kioskModeAllowZoomSettings": { + "type": "boolean", + "description": "Indicates whether or not to allow access to the zoom settings while in kiosk mode." + }, + "kioskModeAppStoreUrl": { + "type": "string", + "description": "URL in the app store to the app to use for kiosk mode. Use if KioskModeManagedAppId is not known.", + "nullable": true + }, + "kioskModeBuiltInAppId": { + "type": "string", + "description": "ID for built-in apps to use for kiosk mode. Used when KioskModeManagedAppId and KioskModeAppStoreUrl are not set.", + "nullable": true + }, + "kioskModeRequireAssistiveTouch": { + "type": "boolean", + "description": "Indicates whether or not to require assistive touch while in kiosk mode." + }, + "kioskModeRequireColorInversion": { + "type": "boolean", + "description": "Indicates whether or not to require color inversion while in kiosk mode." + }, + "kioskModeRequireMonoAudio": { + "type": "boolean", + "description": "Indicates whether or not to require mono audio while in kiosk mode." + }, + "kioskModeRequireVoiceOver": { + "type": "boolean", + "description": "Indicates whether or not to require voice over while in kiosk mode." + }, + "kioskModeRequireZoom": { + "type": "boolean", + "description": "Indicates whether or not to require zoom while in kiosk mode." + }, + "kioskModeManagedAppId": { + "type": "string", + "description": "Managed app id of the app to use for kiosk mode. If KioskModeManagedAppId is specified then KioskModeAppStoreUrl will be ignored.", + "nullable": true + }, + "lockScreenBlockControlCenter": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using control center on the lock screen." + }, + "lockScreenBlockNotificationView": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using the notification view on the lock screen." + }, + "lockScreenBlockPassbook": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using passbook when the device is locked." + }, + "lockScreenBlockTodayView": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using the Today View on the lock screen." + }, + "mediaContentRatingAustralia": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingAustralia" + } + ], + "description": "Media content rating settings for Australia", + "nullable": true + }, + "mediaContentRatingCanada": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingCanada" + } + ], + "description": "Media content rating settings for Canada", + "nullable": true + }, + "mediaContentRatingFrance": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingFrance" + } + ], + "description": "Media content rating settings for France", + "nullable": true + }, + "mediaContentRatingGermany": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingGermany" + } + ], + "description": "Media content rating settings for Germany", + "nullable": true + }, + "mediaContentRatingIreland": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingIreland" + } + ], + "description": "Media content rating settings for Ireland", + "nullable": true + }, + "mediaContentRatingJapan": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingJapan" + } + ], + "description": "Media content rating settings for Japan", + "nullable": true + }, + "mediaContentRatingNewZealand": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingNewZealand" + } + ], + "description": "Media content rating settings for New Zealand", + "nullable": true + }, + "mediaContentRatingUnitedKingdom": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingUnitedKingdom" + } + ], + "description": "Media content rating settings for United Kingdom", + "nullable": true + }, + "mediaContentRatingUnitedStates": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mediaContentRatingUnitedStates" + } + ], + "description": "Media content rating settings for United States", + "nullable": true + }, + "networkUsageRules": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosNetworkUsageRule" + } + ], + "nullable": true + }, + "description": "List of managed apps and the network rules that applies to them. This collection can contain a maximum of 1000 elements." + }, + "mediaContentRatingApps": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingAppsType" + } + ], + "description": "Media content rating settings for Apps" + }, + "messagesBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using the Messages app on the supervised device." + }, + "notificationsBlockSettingsModification": { + "type": "boolean", + "description": "Indicates whether or not to allow notifications settings modification (iOS 9.3 and later)." + }, + "passcodeBlockFingerprintUnlock": { + "type": "boolean", + "description": "Indicates whether or not to block fingerprint unlock." + }, + "passcodeBlockFingerprintModification": { + "type": "boolean", + "description": "Block modification of registered Touch ID fingerprints when in supervised mode." + }, + "passcodeBlockModification": { + "type": "boolean", + "description": "Indicates whether or not to allow passcode modification on the supervised device (iOS 9.0 and later)." + }, + "passcodeBlockSimple": { + "type": "boolean", + "description": "Indicates whether or not to block simple passcodes." + }, + "passcodeExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the passcode expires. Valid values 1 to 65535", + "nullable": true + }, + "passcodeMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passcode. Valid values 4 to 14", + "nullable": true + }, + "passcodeMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a passcode is required.", + "nullable": true + }, + "passcodeMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before the screen times out.", + "nullable": true + }, + "passcodeMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of character sets a passcode must contain. Valid values 0 to 4", + "nullable": true + }, + "passcodePreviousPasscodeBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passcodes to block. Valid values 1 to 24", + "nullable": true + }, + "passcodeSignInFailureCountBeforeWipe": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of sign in failures allowed before wiping the device. Valid values 4 to 11", + "nullable": true + }, + "passcodeRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "Type of passcode that is required." + }, + "passcodeRequired": { + "type": "boolean", + "description": "Indicates whether or not to require a passcode." + }, + "podcastsBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using podcasts on the supervised device (iOS 8.0 and later)." + }, + "safariBlockAutofill": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using Auto fill in Safari." + }, + "safariBlockJavaScript": { + "type": "boolean", + "description": "Indicates whether or not to block JavaScript in Safari." + }, + "safariBlockPopups": { + "type": "boolean", + "description": "Indicates whether or not to block popups in Safari." + }, + "safariBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using Safari." + }, + "safariCookieSettings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.webBrowserCookieSettings" + } + ], + "description": "Cookie settings for Safari." + }, + "safariManagedDomains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "URLs matching the patterns listed here will be considered managed." + }, + "safariPasswordAutoFillDomains": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Users can save passwords in Safari only from URLs matching the patterns listed here. Applies to devices in supervised mode (iOS 9.3 and later)." + }, + "safariRequireFraudWarning": { + "type": "boolean", + "description": "Indicates whether or not to require fraud warning in Safari." + }, + "screenCaptureBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from taking Screenshots." + }, + "siriBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using Siri." + }, + "siriBlockedWhenLocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from using Siri when locked." + }, + "siriBlockUserGeneratedContent": { + "type": "boolean", + "description": "Indicates whether or not to block Siri from querying user-generated content when used on a supervised device." + }, + "siriRequireProfanityFilter": { + "type": "boolean", + "description": "Indicates whether or not to prevent Siri from dictating, or speaking profane language on supervised device." + }, + "spotlightBlockInternetResults": { + "type": "boolean", + "description": "Indicates whether or not to block Spotlight search from returning internet results on supervised device." + }, + "voiceDialingBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block voice dialing." + }, + "wallpaperBlockModification": { + "type": "boolean", + "description": "Indicates whether or not to allow wallpaper modification on supervised device (iOS 9.0 and later) ." + }, + "wiFiConnectOnlyToConfiguredNetworks": { + "type": "boolean", + "description": "Indicates whether or not to force the device to use only Wi-Fi networks from configuration profiles when the device is in supervised mode." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the iosGeneralDeviceConfiguration resource." + } + ] + }, + "microsoft.graph.mediaContentRatingAustralia": { + "title": "mediaContentRatingAustralia", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingAustraliaMoviesType" + } + ], + "description": "Movies rating selected for Australia" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingAustraliaTelevisionType" + } + ], + "description": "TV rating selected for Australia" + } + } + }, + "microsoft.graph.mediaContentRatingCanada": { + "title": "mediaContentRatingCanada", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingCanadaMoviesType" + } + ], + "description": "Movies rating selected for Canada" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingCanadaTelevisionType" + } + ], + "description": "TV rating selected for Canada" + } + } + }, + "microsoft.graph.mediaContentRatingFrance": { + "title": "mediaContentRatingFrance", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingFranceMoviesType" + } + ], + "description": "Movies rating selected for France" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingFranceTelevisionType" + } + ], + "description": "TV rating selected for France" + } + } + }, + "microsoft.graph.mediaContentRatingGermany": { + "title": "mediaContentRatingGermany", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingGermanyMoviesType" + } + ], + "description": "Movies rating selected for Germany" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingGermanyTelevisionType" + } + ], + "description": "TV rating selected for Germany" + } + } + }, + "microsoft.graph.mediaContentRatingIreland": { + "title": "mediaContentRatingIreland", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingIrelandMoviesType" + } + ], + "description": "Movies rating selected for Ireland" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingIrelandTelevisionType" + } + ], + "description": "TV rating selected for Ireland" + } + } + }, + "microsoft.graph.mediaContentRatingJapan": { + "title": "mediaContentRatingJapan", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingJapanMoviesType" + } + ], + "description": "Movies rating selected for Japan" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingJapanTelevisionType" + } + ], + "description": "TV rating selected for Japan" + } + } + }, + "microsoft.graph.mediaContentRatingNewZealand": { + "title": "mediaContentRatingNewZealand", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingNewZealandMoviesType" + } + ], + "description": "Movies rating selected for New Zealand" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingNewZealandTelevisionType" + } + ], + "description": "TV rating selected for New Zealand" + } + } + }, + "microsoft.graph.mediaContentRatingUnitedKingdom": { + "title": "mediaContentRatingUnitedKingdom", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingUnitedKingdomMoviesType" + } + ], + "description": "Movies rating selected for United Kingdom" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingUnitedKingdomTelevisionType" + } + ], + "description": "TV rating selected for United Kingdom" + } + } + }, + "microsoft.graph.mediaContentRatingUnitedStates": { + "title": "mediaContentRatingUnitedStates", + "type": "object", + "properties": { + "movieRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingUnitedStatesMoviesType" + } + ], + "description": "Movies rating selected for United States" + }, + "tvRating": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ratingUnitedStatesTelevisionType" + } + ], + "description": "TV rating selected for United States" + } + } + }, + "microsoft.graph.iosNetworkUsageRule": { + "title": "iosNetworkUsageRule", + "type": "object", + "properties": { + "managedApps": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "Information about the managed apps that this rule is going to apply to. This collection can contain a maximum of 500 elements." + }, + "cellularDataBlockWhenRoaming": { + "type": "boolean", + "description": "If set to true, corresponding managed apps will not be allowed to use cellular data when roaming." + }, + "cellularDataBlocked": { + "type": "boolean", + "description": "If set to true, corresponding managed apps will not be allowed to use cellular data at any time." + } + } + }, + "microsoft.graph.iosUpdateConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "iosUpdateConfiguration", + "type": "object", + "properties": { + "activeHoursStart": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Active Hours Start (active hours mean the time window when updates install should not happen)", + "format": "time" + }, + "activeHoursEnd": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Active Hours End (active hours mean the time window when updates install should not happen)", + "format": "time" + }, + "scheduledInstallDays": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.dayOfWeek" + } + ] + }, + "description": "Days in week for which active hours are configured. This collection can contain a maximum of 7 elements." + }, + "utcTimeOffsetInMinutes": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "UTC Time Offset indicated in minutes" + } + }, + "description": "IOS Update Configuration, allows you to configure time window within week to install iOS updates" + } + ] + }, + "microsoft.graph.macOSCustomConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "macOSCustomConfiguration", + "type": "object", + "properties": { + "payloadName": { + "type": "string", + "description": "Name that is displayed to the user." + }, + "payloadFileName": { + "type": "string", + "description": "Payload file name (*.mobileconfig | *.xml).", + "nullable": true + }, + "payload": { + "type": "string", + "description": "Payload. (UTF8 encoded byte array)", + "format": "base64url" + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSCustomConfiguration resource." + } + ] + }, + "microsoft.graph.macOSGeneralDeviceConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "macOSGeneralDeviceConfiguration", + "type": "object", + "properties": { + "compliantAppsList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps in the compliance (either allow list or block list, controlled by CompliantAppListType). This collection can contain a maximum of 10000 elements." + }, + "compliantAppListType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListType" + } + ], + "description": "List that is in the CompliantAppsList." + }, + "emailInDomainSuffixes": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "An email address lacking a suffix that matches any of these strings will be considered out-of-domain." + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Block simple passwords." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of character sets a password must contain. Valid values 0 to 4", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passwords.", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity required before a password is required.", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity required before the screen times out.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "Type of password that is required." + }, + "passwordRequired": { + "type": "boolean", + "description": "Whether or not to require a password." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSGeneralDeviceConfiguration resource." + } + ] + }, + "microsoft.graph.appleDeviceFeaturesConfigurationBase": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "appleDeviceFeaturesConfigurationBase", + "type": "object", + "description": "Apple device features configuration profile." + } + ] + }, + "microsoft.graph.iosDeviceFeaturesConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appleDeviceFeaturesConfigurationBase" + }, + { + "title": "iosDeviceFeaturesConfiguration", + "type": "object", + "properties": { + "assetTagTemplate": { + "type": "string", + "description": "Asset tag information for the device, displayed on the login window and lock screen.", + "nullable": true + }, + "lockScreenFootnote": { + "type": "string", + "description": "A footnote displayed on the login window and lock screen. Available in iOS 9.3.1 and later.", + "nullable": true + }, + "homeScreenDockIcons": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenItem" + } + ], + "nullable": true + }, + "description": "A list of app and folders to appear on the Home Screen Dock. This collection can contain a maximum of 500 elements." + }, + "homeScreenPages": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenPage" + } + ], + "nullable": true + }, + "description": "A list of pages on the Home Screen. This collection can contain a maximum of 500 elements." + }, + "notificationSettings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosNotificationSettings" + } + ], + "nullable": true + }, + "description": "Notification settings for each bundle id. Applicable to devices in supervised mode only (iOS 9.3 and later). This collection can contain a maximum of 500 elements." + } + }, + "description": "iOS Device Features Configuration Profile." + } + ] + }, + "microsoft.graph.iosHomeScreenItem": { + "title": "iosHomeScreenItem", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Name of the app", + "nullable": true + } + } + }, + "microsoft.graph.iosHomeScreenPage": { + "title": "iosHomeScreenPage", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Name of the page", + "nullable": true + }, + "icons": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenItem" + }, + "description": "A list of apps and folders to appear on a page. This collection can contain a maximum of 500 elements." + } + } + }, + "microsoft.graph.iosNotificationSettings": { + "title": "iosNotificationSettings", + "type": "object", + "properties": { + "bundleID": { + "type": "string", + "description": "Bundle id of app to which to apply these notification settings." + }, + "appName": { + "type": "string", + "description": "Application name to be associated with the bundleID.", + "nullable": true + }, + "publisher": { + "type": "string", + "description": "Publisher to be associated with the bundleID.", + "nullable": true + }, + "enabled": { + "type": "boolean", + "description": "Indicates whether notifications are allowed for this app.", + "nullable": true + }, + "showInNotificationCenter": { + "type": "boolean", + "description": "Indicates whether notifications can be shown in notification center.", + "nullable": true + }, + "showOnLockScreen": { + "type": "boolean", + "description": "Indicates whether notifications can be shown on the lock screen.", + "nullable": true + }, + "alertType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosNotificationAlertType" + } + ], + "description": "Indicates the type of alert for notifications for this app." + }, + "badgesEnabled": { + "type": "boolean", + "description": "Indicates whether badges are allowed for this app.", + "nullable": true + }, + "soundsEnabled": { + "type": "boolean", + "description": "Indicates whether sounds are allowed for this app.", + "nullable": true + } + } + }, + "microsoft.graph.iosHomeScreenFolder": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenItem" + }, + { + "title": "iosHomeScreenFolder", + "type": "object", + "properties": { + "pages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenFolderPage" + }, + "description": "Pages of Home Screen Layout Icons which must be Application Type. This collection can contain a maximum of 500 elements." + } + } + } + ] + }, + "microsoft.graph.iosHomeScreenFolderPage": { + "title": "iosHomeScreenFolderPage", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Name of the folder page", + "nullable": true + }, + "apps": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenApp" + }, + "description": "A list of apps to appear on a page within a folder. This collection can contain a maximum of 500 elements." + } + } + }, + "microsoft.graph.iosHomeScreenApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.iosHomeScreenItem" + }, + { + "title": "iosHomeScreenApp", + "type": "object", + "properties": { + "bundleID": { + "type": "string", + "description": "BundleID of app" + } + } + } + ] + }, + "microsoft.graph.macOSDeviceFeaturesConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appleDeviceFeaturesConfigurationBase" + }, + { + "title": "macOSDeviceFeaturesConfiguration", + "type": "object", + "description": "MacOS device features configuration profile." + } + ] + }, + "microsoft.graph.windowsDefenderAdvancedThreatProtectionConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windowsDefenderAdvancedThreatProtectionConfiguration", + "type": "object", + "properties": { + "allowSampleSharing": { + "type": "boolean", + "description": "Windows Defender AdvancedThreatProtection \"Allow Sample Sharing\" Rule" + }, + "enableExpeditedTelemetryReporting": { + "type": "boolean", + "description": "Expedite Windows Defender Advanced Threat Protection telemetry reporting frequency." + } + }, + "description": "Windows Defender AdvancedThreatProtection Configuration." + } + ] + }, + "microsoft.graph.editionUpgradeConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "editionUpgradeConfiguration", + "type": "object", + "properties": { + "licenseType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.editionUpgradeLicenseType" + } + ], + "description": "Edition Upgrade License Type." + }, + "targetEdition": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windows10EditionType" + } + ], + "description": "Edition Upgrade Target Edition." + }, + "license": { + "type": "string", + "description": "Edition Upgrade License File Content.", + "nullable": true + }, + "productKey": { + "type": "string", + "description": "Edition Upgrade Product Key.", + "nullable": true + } + }, + "description": "Windows 10 Edition Upgrade configuration." + } + ] + }, + "microsoft.graph.windows10EndpointProtectionConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows10EndpointProtectionConfiguration", + "type": "object", + "properties": { + "firewallBlockStatefulFTP": { + "type": "boolean", + "description": "Blocks stateful FTP connections to the device" + }, + "firewallIdleTimeoutForSecurityAssociationInSeconds": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Configures the idle timeout for security associations, in seconds, from 300 to 3600 inclusive. This is the period after which security associations will expire and be deleted. Valid values 300 to 3600", + "nullable": true + }, + "firewallPreSharedKeyEncodingMethod": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.firewallPreSharedKeyEncodingMethodType" + } + ], + "description": "Select the preshared key encoding to be used" + }, + "firewallIPSecExemptionsAllowNeighborDiscovery": { + "type": "boolean", + "description": "Configures IPSec exemptions to allow neighbor discovery IPv6 ICMP type-codes" + }, + "firewallIPSecExemptionsAllowICMP": { + "type": "boolean", + "description": "Configures IPSec exemptions to allow ICMP" + }, + "firewallIPSecExemptionsAllowRouterDiscovery": { + "type": "boolean", + "description": "Configures IPSec exemptions to allow router discovery IPv6 ICMP type-codes" + }, + "firewallIPSecExemptionsAllowDHCP": { + "type": "boolean", + "description": "Configures IPSec exemptions to allow both IPv4 and IPv6 DHCP traffic" + }, + "firewallCertificateRevocationListCheckMethod": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.firewallCertificateRevocationListCheckMethodType" + } + ], + "description": "Specify how the certificate revocation list is to be enforced" + }, + "firewallMergeKeyingModuleSettings": { + "type": "boolean", + "description": "If an authentication set is not fully supported by a keying module, direct the module to ignore only unsupported authentication suites rather than the entire set" + }, + "firewallPacketQueueingMethod": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.firewallPacketQueueingMethodType" + } + ], + "description": "Configures how packet queueing should be applied in the tunnel gateway scenario" + }, + "firewallProfileDomain": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsFirewallNetworkProfile" + } + ], + "description": "Configures the firewall profile settings for domain networks", + "nullable": true + }, + "firewallProfilePublic": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsFirewallNetworkProfile" + } + ], + "description": "Configures the firewall profile settings for public networks", + "nullable": true + }, + "firewallProfilePrivate": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsFirewallNetworkProfile" + } + ], + "description": "Configures the firewall profile settings for private networks", + "nullable": true + }, + "defenderAttackSurfaceReductionExcludedPaths": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "List of exe files and folders to be excluded from attack surface reduction rules" + }, + "defenderGuardedFoldersAllowedAppPaths": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "List of paths to exe that are allowed to access protected folders" + }, + "defenderAdditionalGuardedFolders": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "List of folder paths to be added to the list of protected folders" + }, + "defenderExploitProtectionXml": { + "type": "string", + "description": "Xml content containing information regarding exploit protection details.", + "format": "base64url", + "nullable": true + }, + "defenderExploitProtectionXmlFileName": { + "type": "string", + "description": "Name of the file from which DefenderExploitProtectionXml was obtained.", + "nullable": true + }, + "defenderSecurityCenterBlockExploitProtectionOverride": { + "type": "boolean", + "description": "Indicates whether or not to block user from overriding Exploit Protection settings." + }, + "appLockerApplicationControl": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appLockerApplicationControlType" + } + ], + "description": "Enables the Admin to choose what types of app to allow on devices." + }, + "smartScreenEnableInShell": { + "type": "boolean", + "description": "Allows IT Admins to configure SmartScreen for Windows." + }, + "smartScreenBlockOverrideForFiles": { + "type": "boolean", + "description": "Allows IT Admins to control whether users can can ignore SmartScreen warnings and run malicious files." + }, + "applicationGuardEnabled": { + "type": "boolean", + "description": "Enable Windows Defender Application Guard" + }, + "applicationGuardBlockFileTransfer": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.applicationGuardBlockFileTransferType" + } + ], + "description": "Block clipboard to transfer image file, text file or neither of them" + }, + "applicationGuardBlockNonEnterpriseContent": { + "type": "boolean", + "description": "Block enterprise sites to load non-enterprise content, such as third party plug-ins" + }, + "applicationGuardAllowPersistence": { + "type": "boolean", + "description": "Allow persisting user generated data inside the App Guard Containter (favorites, cookies, web passwords, etc.)" + }, + "applicationGuardForceAuditing": { + "type": "boolean", + "description": "Force auditing will persist Windows logs and events to meet security/compliance criteria (sample events are user login-logoff, use of privilege rights, software installation, system changes, etc.)" + }, + "applicationGuardBlockClipboardSharing": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.applicationGuardBlockClipboardSharingType" + } + ], + "description": "Block clipboard to share data from Host to Container, or from Container to Host, or both ways, or neither ways." + }, + "applicationGuardAllowPrintToPDF": { + "type": "boolean", + "description": "Allow printing to PDF from Container" + }, + "applicationGuardAllowPrintToXPS": { + "type": "boolean", + "description": "Allow printing to XPS from Container" + }, + "applicationGuardAllowPrintToLocalPrinters": { + "type": "boolean", + "description": "Allow printing to Local Printers from Container" + }, + "applicationGuardAllowPrintToNetworkPrinters": { + "type": "boolean", + "description": "Allow printing to Network Printers from Container" + }, + "bitLockerDisableWarningForOtherDiskEncryption": { + "type": "boolean", + "description": "Allows the Admin to disable the warning prompt for other disk encryption on the user machines." + }, + "bitLockerEnableStorageCardEncryptionOnMobile": { + "type": "boolean", + "description": "Allows the admin to require encryption to be turned on using BitLocker. This policy is valid only for a mobile SKU." + }, + "bitLockerEncryptDevice": { + "type": "boolean", + "description": "Allows the admin to require encryption to be turned on using BitLocker." + }, + "bitLockerRemovableDrivePolicy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.bitLockerRemovableDrivePolicy" + } + ], + "description": "BitLocker Removable Drive Policy.", + "nullable": true + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the Windows10EndpointProtectionConfiguration resource." + } + ] + }, + "microsoft.graph.windowsFirewallNetworkProfile": { + "title": "windowsFirewallNetworkProfile", + "type": "object", + "properties": { + "firewallEnabled": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.stateManagementSetting" + } + ], + "description": "Configures the host device to allow or block the firewall and advanced security enforcement for the network profile." + }, + "stealthModeBlocked": { + "type": "boolean", + "description": "Prevent the server from operating in stealth mode. When StealthModeRequired and StealthModeBlocked are both true, StealthModeBlocked takes priority." + }, + "incomingTrafficBlocked": { + "type": "boolean", + "description": "Configures the firewall to block all incoming traffic regardless of other policy settings. When IncomingTrafficRequired and IncomingTrafficBlocked are both true, IncomingTrafficBlocked takes priority." + }, + "unicastResponsesToMulticastBroadcastsBlocked": { + "type": "boolean", + "description": "Configures the firewall to block unicast responses to multicast broadcast traffic. When UnicastResponsesToMulticastBroadcastsRequired and UnicastResponsesToMulticastBroadcastsBlocked are both true, UnicastResponsesToMulticastBroadcastsBlocked takes priority." + }, + "inboundNotificationsBlocked": { + "type": "boolean", + "description": "Prevents the firewall from displaying notifications when an application is blocked from listening on a port. When InboundNotificationsRequired and InboundNotificationsBlocked are both true, InboundNotificationsBlocked takes priority." + }, + "authorizedApplicationRulesFromGroupPolicyMerged": { + "type": "boolean", + "description": "Configures the firewall to merge authorized application rules from group policy with those from local store instead of ignoring the local store rules. When AuthorizedApplicationRulesFromGroupPolicyNotMerged and AuthorizedApplicationRulesFromGroupPolicyMerged are both true, AuthorizedApplicationRulesFromGroupPolicyMerged takes priority." + }, + "globalPortRulesFromGroupPolicyMerged": { + "type": "boolean", + "description": "Configures the firewall to merge global port rules from group policy with those from local store instead of ignoring the local store rules. When GlobalPortRulesFromGroupPolicyNotMerged and GlobalPortRulesFromGroupPolicyMerged are both true, GlobalPortRulesFromGroupPolicyMerged takes priority." + }, + "connectionSecurityRulesFromGroupPolicyMerged": { + "type": "boolean", + "description": "Configures the firewall to merge connection security rules from group policy with those from local store instead of ignoring the local store rules. When ConnectionSecurityRulesFromGroupPolicyNotMerged and ConnectionSecurityRulesFromGroupPolicyMerged are both true, ConnectionSecurityRulesFromGroupPolicyMerged takes priority." + }, + "outboundConnectionsBlocked": { + "type": "boolean", + "description": "Configures the firewall to block all outgoing connections by default. When OutboundConnectionsRequired and OutboundConnectionsBlocked are both true, OutboundConnectionsBlocked takes priority." + }, + "inboundConnectionsBlocked": { + "type": "boolean", + "description": "Configures the firewall to block all incoming connections by default. When InboundConnectionsRequired and InboundConnectionsBlocked are both true, InboundConnectionsBlocked takes priority." + }, + "securedPacketExemptionAllowed": { + "type": "boolean", + "description": "Configures the firewall to allow the host computer to respond to unsolicited network traffic of that traffic is secured by IPSec even when stealthModeBlocked is set to true. When SecuredPacketExemptionBlocked and SecuredPacketExemptionAllowed are both true, SecuredPacketExemptionAllowed takes priority." + }, + "policyRulesFromGroupPolicyMerged": { + "type": "boolean", + "description": "Configures the firewall to merge Firewall Rule policies from group policy with those from local store instead of ignoring the local store rules. When PolicyRulesFromGroupPolicyNotMerged and PolicyRulesFromGroupPolicyMerged are both true, PolicyRulesFromGroupPolicyMerged takes priority." + } + } + }, + "microsoft.graph.bitLockerRemovableDrivePolicy": { + "title": "bitLockerRemovableDrivePolicy", + "type": "object", + "properties": { + "encryptionMethod": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.bitLockerEncryptionMethod" + } + ], + "description": "Select the encryption method for removable drives.", + "nullable": true + }, + "requireEncryptionForWriteAccess": { + "type": "boolean", + "description": "Indicates whether to block write access to devices configured in another organization. If requireEncryptionForWriteAccess is false, this value does not affect." + }, + "blockCrossOrganizationWriteAccess": { + "type": "boolean", + "description": "This policy setting determines whether BitLocker protection is required for removable data drives to be writable on a computer." + } + } + }, + "microsoft.graph.windows10GeneralConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows10GeneralConfiguration", + "type": "object", + "properties": { + "enterpriseCloudPrintDiscoveryEndPoint": { + "type": "string", + "description": "Endpoint for discovering cloud printers.", + "nullable": true + }, + "enterpriseCloudPrintOAuthAuthority": { + "type": "string", + "description": "Authentication endpoint for acquiring OAuth tokens.", + "nullable": true + }, + "enterpriseCloudPrintOAuthClientIdentifier": { + "type": "string", + "description": "GUID of a client application authorized to retrieve OAuth tokens from the OAuth Authority.", + "nullable": true + }, + "enterpriseCloudPrintResourceIdentifier": { + "type": "string", + "description": "OAuth resource URI for print service as configured in the Azure portal.", + "nullable": true + }, + "enterpriseCloudPrintDiscoveryMaxLimit": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Maximum number of printers that should be queried from a discovery endpoint. This is a mobile only setting. Valid values 1 to 65535", + "nullable": true + }, + "enterpriseCloudPrintMopriaDiscoveryResourceIdentifier": { + "type": "string", + "description": "OAuth resource URI for printer discovery service as configured in Azure portal.", + "nullable": true + }, + "searchBlockDiacritics": { + "type": "boolean", + "description": "Specifies if search can use diacritics." + }, + "searchDisableAutoLanguageDetection": { + "type": "boolean", + "description": "Specifies whether to use automatic language detection when indexing content and properties." + }, + "searchDisableIndexingEncryptedItems": { + "type": "boolean", + "description": "Indicates whether or not to block indexing of WIP-protected items to prevent them from appearing in search results for Cortana or Explorer." + }, + "searchEnableRemoteQueries": { + "type": "boolean", + "description": "Indicates whether or not to block remote queries of this computer’s index." + }, + "searchDisableIndexerBackoff": { + "type": "boolean", + "description": "Indicates whether or not to disable the search indexer backoff feature." + }, + "searchDisableIndexingRemovableDrive": { + "type": "boolean", + "description": "Indicates whether or not to allow users to add locations on removable drives to libraries and to be indexed." + }, + "searchEnableAutomaticIndexSizeManangement": { + "type": "boolean", + "description": "Specifies minimum amount of hard drive space on the same drive as the index location before indexing stops." + }, + "diagnosticsDataSubmissionMode": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.diagnosticDataSubmissionMode" + } + ], + "description": "Gets or sets a value allowing the device to send diagnostic and usage telemetry data, such as Watson." + }, + "oneDriveDisableFileSync": { + "type": "boolean", + "description": "Gets or sets a value allowing IT admins to prevent apps and features from working with files on OneDrive." + }, + "smartScreenEnableAppInstallControl": { + "type": "boolean", + "description": "Allows IT Admins to control whether users are allowed to install apps from places other than the Store." + }, + "personalizationDesktopImageUrl": { + "type": "string", + "description": "A http or https Url to a jpg, jpeg or png image that needs to be downloaded and used as the Desktop Image or a file Url to a local image on the file system that needs to used as the Desktop Image.", + "nullable": true + }, + "personalizationLockScreenImageUrl": { + "type": "string", + "description": "A http or https Url to a jpg, jpeg or png image that neeeds to be downloaded and used as the Lock Screen Image or a file Url to a local image on the file system that needs to be used as the Lock Screen Image.", + "nullable": true + }, + "bluetoothAllowedServices": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Specify a list of allowed Bluetooth services and profiles in hex formatted strings." + }, + "bluetoothBlockAdvertising": { + "type": "boolean", + "description": "Whether or not to Block the user from using bluetooth advertising." + }, + "bluetoothBlockDiscoverableMode": { + "type": "boolean", + "description": "Whether or not to Block the user from using bluetooth discoverable mode." + }, + "bluetoothBlockPrePairing": { + "type": "boolean", + "description": "Whether or not to block specific bundled Bluetooth peripherals to automatically pair with the host device." + }, + "edgeBlockAutofill": { + "type": "boolean", + "description": "Indicates whether or not to block auto fill." + }, + "edgeBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using the Edge browser." + }, + "edgeCookiePolicy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.edgeCookiePolicy" + } + ], + "description": "Indicates which cookies to block in the Edge browser." + }, + "edgeBlockDeveloperTools": { + "type": "boolean", + "description": "Indicates whether or not to block developer tools in the Edge browser." + }, + "edgeBlockSendingDoNotTrackHeader": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from sending the do not track header." + }, + "edgeBlockExtensions": { + "type": "boolean", + "description": "Indicates whether or not to block extensions in the Edge browser." + }, + "edgeBlockInPrivateBrowsing": { + "type": "boolean", + "description": "Indicates whether or not to block InPrivate browsing on corporate networks, in the Edge browser." + }, + "edgeBlockJavaScript": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using JavaScript." + }, + "edgeBlockPasswordManager": { + "type": "boolean", + "description": "Indicates whether or not to Block password manager." + }, + "edgeBlockAddressBarDropdown": { + "type": "boolean", + "description": "Block the address bar dropdown functionality in Microsoft Edge. Disable this settings to minimize network connections from Microsoft Edge to Microsoft services." + }, + "edgeBlockCompatibilityList": { + "type": "boolean", + "description": "Block Microsoft compatibility list in Microsoft Edge. This list from Microsoft helps Edge properly display sites with known compatibility issues." + }, + "edgeClearBrowsingDataOnExit": { + "type": "boolean", + "description": "Clear browsing data on exiting Microsoft Edge." + }, + "edgeAllowStartPagesModification": { + "type": "boolean", + "description": "Allow users to change Start pages on Edge. Use the EdgeHomepageUrls to specify the Start pages that the user would see by default when they open Edge." + }, + "edgeDisableFirstRunPage": { + "type": "boolean", + "description": "Block the Microsoft web page that opens on the first use of Microsoft Edge. This policy allows enterprises, like those enrolled in zero emissions configurations, to block this page." + }, + "edgeBlockLiveTileDataCollection": { + "type": "boolean", + "description": "Block the collection of information by Microsoft for live tile creation when users pin a site to Start from Microsoft Edge." + }, + "edgeSyncFavoritesWithInternetExplorer": { + "type": "boolean", + "description": "Enable favorites sync between Internet Explorer and Microsoft Edge. Additions, deletions, modifications and order changes to favorites are shared between browsers." + }, + "cellularBlockDataWhenRoaming": { + "type": "boolean", + "description": "Whether or not to Block the user from using data over cellular while roaming." + }, + "cellularBlockVpn": { + "type": "boolean", + "description": "Whether or not to Block the user from using VPN over cellular." + }, + "cellularBlockVpnWhenRoaming": { + "type": "boolean", + "description": "Whether or not to Block the user from using VPN when roaming over cellular." + }, + "defenderBlockEndUserAccess": { + "type": "boolean", + "description": "Whether or not to block end user access to Defender." + }, + "defenderDaysBeforeDeletingQuarantinedMalware": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before deleting quarantined malware. Valid values 0 to 90", + "nullable": true + }, + "defenderDetectedMalwareActions": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderDetectedMalwareActions" + } + ], + "description": "Gets or sets Defender’s actions to take on detected Malware per threat level.", + "nullable": true + }, + "defenderSystemScanSchedule": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.weeklySchedule" + } + ], + "description": "Defender day of the week for the system scan." + }, + "defenderFilesAndFoldersToExclude": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Files and folder to exclude from scans and real time protection." + }, + "defenderFileExtensionsToExclude": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "File extensions to exclude from scans and real time protection." + }, + "defenderScanMaxCpu": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Max CPU usage percentage during scan. Valid values 0 to 100", + "nullable": true + }, + "defenderMonitorFileActivity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderMonitorFileActivity" + } + ], + "description": "Value for monitoring file activity." + }, + "defenderProcessesToExclude": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Processes to exclude from scans and real time protection." + }, + "defenderPromptForSampleSubmission": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderPromptForSampleSubmission" + } + ], + "description": "The configuration for how to prompt user for sample submission." + }, + "defenderRequireBehaviorMonitoring": { + "type": "boolean", + "description": "Indicates whether or not to require behavior monitoring." + }, + "defenderRequireCloudProtection": { + "type": "boolean", + "description": "Indicates whether or not to require cloud protection." + }, + "defenderRequireNetworkInspectionSystem": { + "type": "boolean", + "description": "Indicates whether or not to require network inspection system." + }, + "defenderRequireRealTimeMonitoring": { + "type": "boolean", + "description": "Indicates whether or not to require real time monitoring." + }, + "defenderScanArchiveFiles": { + "type": "boolean", + "description": "Indicates whether or not to scan archive files." + }, + "defenderScanDownloads": { + "type": "boolean", + "description": "Indicates whether or not to scan downloads." + }, + "defenderScanNetworkFiles": { + "type": "boolean", + "description": "Indicates whether or not to scan files opened from a network folder." + }, + "defenderScanIncomingMail": { + "type": "boolean", + "description": "Indicates whether or not to scan incoming mail messages." + }, + "defenderScanMappedNetworkDrivesDuringFullScan": { + "type": "boolean", + "description": "Indicates whether or not to scan mapped network drives during full scan." + }, + "defenderScanRemovableDrivesDuringFullScan": { + "type": "boolean", + "description": "Indicates whether or not to scan removable drives during full scan." + }, + "defenderScanScriptsLoadedInInternetExplorer": { + "type": "boolean", + "description": "Indicates whether or not to scan scripts loaded in Internet Explorer browser." + }, + "defenderSignatureUpdateIntervalInHours": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The signature update interval in hours. Specify 0 not to check. Valid values 0 to 24", + "nullable": true + }, + "defenderScanType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderScanType" + } + ], + "description": "The defender system scan type." + }, + "defenderScheduledScanTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "The defender time for the system scan.", + "format": "time", + "nullable": true + }, + "defenderScheduledQuickScanTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "The time to perform a daily quick scan.", + "format": "time", + "nullable": true + }, + "defenderCloudBlockLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderCloudBlockLevelType" + } + ], + "description": "Specifies the level of cloud-delivered protection." + }, + "lockScreenAllowTimeoutConfiguration": { + "type": "boolean", + "description": "Specify whether to show a user-configurable setting to control the screen timeout while on the lock screen of Windows 10 Mobile devices. If this policy is set to Allow, the value set by lockScreenTimeoutInSeconds is ignored." + }, + "lockScreenBlockActionCenterNotifications": { + "type": "boolean", + "description": "Indicates whether or not to block action center notifications over lock screen." + }, + "lockScreenBlockCortana": { + "type": "boolean", + "description": "Indicates whether or not the user can interact with Cortana using speech while the system is locked." + }, + "lockScreenBlockToastNotifications": { + "type": "boolean", + "description": "Indicates whether to allow toast notifications above the device lock screen." + }, + "lockScreenTimeoutInSeconds": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Set the duration (in seconds) from the screen locking to the screen turning off for Windows 10 Mobile devices. Supported values are 11-1800. Valid values 11 to 1800", + "nullable": true + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Specify whether PINs or passwords such as \"1111\" or \"1234\" are allowed. For Windows 10 desktops, it also controls the use of picture passwords." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The password expiration in days. Valid values 0 to 730", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The minimum password length. Valid values 4 to 16", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The minutes of inactivity before the screen times out.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of previous passwords to prevent reuse of. Valid values 0 to 50", + "nullable": true + }, + "passwordRequired": { + "type": "boolean", + "description": "Indicates whether or not to require the user to have a password." + }, + "passwordRequireWhenResumeFromIdleState": { + "type": "boolean", + "description": "Indicates whether or not to require a password upon resuming from an idle state." + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "passwordSignInFailureCountBeforeFactoryReset": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of sign in failures before factory reset. Valid values 0 to 999", + "nullable": true + }, + "privacyAdvertisingId": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.stateManagementSetting" + } + ], + "description": "Enables or disables the use of advertising ID. Added in Windows 10, version 1607." + }, + "privacyAutoAcceptPairingAndConsentPrompts": { + "type": "boolean", + "description": "Indicates whether or not to allow the automatic acceptance of the pairing and privacy user consent dialog when launching apps." + }, + "privacyBlockInputPersonalization": { + "type": "boolean", + "description": "Indicates whether or not to block the usage of cloud based speech services for Cortana, Dictation, or Store applications." + }, + "startBlockUnpinningAppsFromTaskbar": { + "type": "boolean", + "description": "Indicates whether or not to block the user from unpinning apps from taskbar." + }, + "startMenuAppListVisibility": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsStartMenuAppListVisibilityType" + } + ], + "description": "Setting the value of this collapses the app list, removes the app list entirely, or disables the corresponding toggle in the Settings app." + }, + "startMenuHideChangeAccountSettings": { + "type": "boolean", + "description": "Enabling this policy hides the change account setting from appearing in the user tile in the start menu." + }, + "startMenuHideFrequentlyUsedApps": { + "type": "boolean", + "description": "Enabling this policy hides the most used apps from appearing on the start menu and disables the corresponding toggle in the Settings app." + }, + "startMenuHideHibernate": { + "type": "boolean", + "description": "Enabling this policy hides hibernate from appearing in the power button in the start menu." + }, + "startMenuHideLock": { + "type": "boolean", + "description": "Enabling this policy hides lock from appearing in the user tile in the start menu." + }, + "startMenuHidePowerButton": { + "type": "boolean", + "description": "Enabling this policy hides the power button from appearing in the start menu." + }, + "startMenuHideRecentJumpLists": { + "type": "boolean", + "description": "Enabling this policy hides recent jump lists from appearing on the start menu/taskbar and disables the corresponding toggle in the Settings app." + }, + "startMenuHideRecentlyAddedApps": { + "type": "boolean", + "description": "Enabling this policy hides recently added apps from appearing on the start menu and disables the corresponding toggle in the Settings app." + }, + "startMenuHideRestartOptions": { + "type": "boolean", + "description": "Enabling this policy hides “Restart/Update and Restart” from appearing in the power button in the start menu." + }, + "startMenuHideShutDown": { + "type": "boolean", + "description": "Enabling this policy hides shut down/update and shut down from appearing in the power button in the start menu." + }, + "startMenuHideSignOut": { + "type": "boolean", + "description": "Enabling this policy hides sign out from appearing in the user tile in the start menu." + }, + "startMenuHideSleep": { + "type": "boolean", + "description": "Enabling this policy hides sleep from appearing in the power button in the start menu." + }, + "startMenuHideSwitchAccount": { + "type": "boolean", + "description": "Enabling this policy hides switch account from appearing in the user tile in the start menu." + }, + "startMenuHideUserTile": { + "type": "boolean", + "description": "Enabling this policy hides the user tile from appearing in the start menu." + }, + "startMenuLayoutEdgeAssetsXml": { + "type": "string", + "description": "This policy setting allows you to import Edge assets to be used with startMenuLayoutXml policy. Start layout can contain secondary tile from Edge app which looks for Edge local asset file. Edge local asset would not exist and cause Edge secondary tile to appear empty in this case. This policy only gets applied when startMenuLayoutXml policy is modified. The value should be a UTF-8 Base64 encoded byte array.", + "format": "base64url", + "nullable": true + }, + "startMenuLayoutXml": { + "type": "string", + "description": "Allows admins to override the default Start menu layout and prevents the user from changing it. The layout is modified by specifying an XML file based on a layout modification schema. XML needs to be in a UTF8 encoded byte array format.", + "format": "base64url", + "nullable": true + }, + "startMenuMode": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsStartMenuModeType" + } + ], + "description": "Allows admins to decide how the Start menu is displayed." + }, + "startMenuPinnedFolderDocuments": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Documents folder shortcut on the Start menu." + }, + "startMenuPinnedFolderDownloads": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Downloads folder shortcut on the Start menu." + }, + "startMenuPinnedFolderFileExplorer": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the FileExplorer shortcut on the Start menu." + }, + "startMenuPinnedFolderHomeGroup": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the HomeGroup folder shortcut on the Start menu." + }, + "startMenuPinnedFolderMusic": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Music folder shortcut on the Start menu." + }, + "startMenuPinnedFolderNetwork": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Network folder shortcut on the Start menu." + }, + "startMenuPinnedFolderPersonalFolder": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the PersonalFolder shortcut on the Start menu." + }, + "startMenuPinnedFolderPictures": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Pictures folder shortcut on the Start menu." + }, + "startMenuPinnedFolderSettings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Settings folder shortcut on the Start menu." + }, + "startMenuPinnedFolderVideos": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.visibilitySetting" + } + ], + "description": "Enforces the visibility (Show/Hide) of the Videos folder shortcut on the Start menu." + }, + "settingsBlockSettingsApp": { + "type": "boolean", + "description": "Indicates whether or not to block access to Settings app." + }, + "settingsBlockSystemPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to System in Settings app." + }, + "settingsBlockDevicesPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Devices in Settings app." + }, + "settingsBlockNetworkInternetPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Network & Internet in Settings app." + }, + "settingsBlockPersonalizationPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Personalization in Settings app." + }, + "settingsBlockAccountsPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Accounts in Settings app." + }, + "settingsBlockTimeLanguagePage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Time & Language in Settings app." + }, + "settingsBlockEaseOfAccessPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Ease of Access in Settings app." + }, + "settingsBlockPrivacyPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Privacy in Settings app." + }, + "settingsBlockUpdateSecurityPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Update & Security in Settings app." + }, + "settingsBlockAppsPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Apps in Settings app." + }, + "settingsBlockGamingPage": { + "type": "boolean", + "description": "Indicates whether or not to block access to Gaming in Settings app." + }, + "windowsSpotlightBlockConsumerSpecificFeatures": { + "type": "boolean", + "description": "Allows IT admins to block experiences that are typically for consumers only, such as Start suggestions, Membership notifications, Post-OOBE app install and redirect tiles." + }, + "windowsSpotlightBlocked": { + "type": "boolean", + "description": "Allows IT admins to turn off all Windows Spotlight features" + }, + "windowsSpotlightBlockOnActionCenter": { + "type": "boolean", + "description": "Block suggestions from Microsoft that show after each OS clean install, upgrade or in an on-going basis to introduce users to what is new or changed" + }, + "windowsSpotlightBlockTailoredExperiences": { + "type": "boolean", + "description": "Block personalized content in Windows spotlight based on user’s device usage." + }, + "windowsSpotlightBlockThirdPartyNotifications": { + "type": "boolean", + "description": "Block third party content delivered via Windows Spotlight" + }, + "windowsSpotlightBlockWelcomeExperience": { + "type": "boolean", + "description": "Block Windows Spotlight Windows welcome experience" + }, + "windowsSpotlightBlockWindowsTips": { + "type": "boolean", + "description": "Allows IT admins to turn off the popup of Windows Tips." + }, + "windowsSpotlightConfigureOnLockScreen": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsSpotlightEnablementSettings" + } + ], + "description": "Specifies the type of Spotlight" + }, + "networkProxyApplySettingsDeviceWide": { + "type": "boolean", + "description": "If set, proxy settings will be applied to all processes and accounts in the device. Otherwise, it will be applied to the user account that’s enrolled into MDM." + }, + "networkProxyDisableAutoDetect": { + "type": "boolean", + "description": "Disable automatic detection of settings. If enabled, the system will try to find the path to a proxy auto-config (PAC) script." + }, + "networkProxyAutomaticConfigurationUrl": { + "type": "string", + "description": "Address to the proxy auto-config (PAC) script you want to use.", + "nullable": true + }, + "networkProxyServer": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windows10NetworkProxyServer" + } + ], + "description": "Specifies manual proxy server settings.", + "nullable": true + }, + "accountsBlockAddingNonMicrosoftAccountEmail": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from adding email accounts to the device that are not associated with a Microsoft account." + }, + "antiTheftModeBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the user from selecting an AntiTheft mode preference (Windows 10 Mobile only)." + }, + "bluetoothBlocked": { + "type": "boolean", + "description": "Whether or not to Block the user from using bluetooth." + }, + "cameraBlocked": { + "type": "boolean", + "description": "Whether or not to Block the user from accessing the camera of the device." + }, + "connectedDevicesServiceBlocked": { + "type": "boolean", + "description": "Whether or not to block Connected Devices Service which enables discovery and connection to other devices, remote messaging, remote app sessions and other cross-device experiences." + }, + "certificatesBlockManualRootCertificateInstallation": { + "type": "boolean", + "description": "Whether or not to Block the user from doing manual root certificate installation." + }, + "copyPasteBlocked": { + "type": "boolean", + "description": "Whether or not to Block the user from using copy paste." + }, + "cortanaBlocked": { + "type": "boolean", + "description": "Whether or not to Block the user from using Cortana." + }, + "deviceManagementBlockFactoryResetOnMobile": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from resetting their phone." + }, + "deviceManagementBlockManualUnenroll": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from doing manual un-enrollment from device management." + }, + "safeSearchFilter": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.safeSearchFilterType" + } + ], + "description": "Specifies what filter level of safe search is required." + }, + "edgeBlockPopups": { + "type": "boolean", + "description": "Indicates whether or not to block popups." + }, + "edgeBlockSearchSuggestions": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using the search suggestions in the address bar." + }, + "edgeBlockSendingIntranetTrafficToInternetExplorer": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from sending Intranet traffic to Internet Explorer from Edge." + }, + "edgeRequireSmartScreen": { + "type": "boolean", + "description": "Indicates whether or not to Require the user to use the smart screen filter." + }, + "edgeEnterpriseModeSiteListLocation": { + "type": "string", + "description": "Indicates the enterprise mode site list location. Could be a local file, local network or http location.", + "nullable": true + }, + "edgeFirstRunUrl": { + "type": "string", + "description": "The first run URL for when Edge browser is opened for the first time.", + "nullable": true + }, + "edgeSearchEngine": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.edgeSearchEngineBase" + } + ], + "description": "Allows IT admins to set a default search engine for MDM-Controlled devices. Users can override this and change their default search engine provided the AllowSearchEngineCustomization policy is not set.", + "nullable": true + }, + "edgeHomepageUrls": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "The list of URLs for homepages shodwn on MDM-enrolled devices on Edge browser." + }, + "edgeBlockAccessToAboutFlags": { + "type": "boolean", + "description": "Indicates whether or not to prevent access to about flags on Edge browser." + }, + "smartScreenBlockPromptOverride": { + "type": "boolean", + "description": "Indicates whether or not users can override SmartScreen Filter warnings about potentially malicious websites." + }, + "smartScreenBlockPromptOverrideForFiles": { + "type": "boolean", + "description": "Indicates whether or not users can override the SmartScreen Filter warnings about downloading unverified files" + }, + "webRtcBlockLocalhostIpAddress": { + "type": "boolean", + "description": "Indicates whether or not user's localhost IP address is displayed while making phone calls using the WebRTC" + }, + "internetSharingBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using internet sharing." + }, + "settingsBlockAddProvisioningPackage": { + "type": "boolean", + "description": "Indicates whether or not to block the user from installing provisioning packages." + }, + "settingsBlockRemoveProvisioningPackage": { + "type": "boolean", + "description": "Indicates whether or not to block the runtime configuration agent from removing provisioning packages." + }, + "settingsBlockChangeSystemTime": { + "type": "boolean", + "description": "Indicates whether or not to block the user from changing date and time settings." + }, + "settingsBlockEditDeviceName": { + "type": "boolean", + "description": "Indicates whether or not to block the user from editing the device name." + }, + "settingsBlockChangeRegion": { + "type": "boolean", + "description": "Indicates whether or not to block the user from changing the region settings." + }, + "settingsBlockChangeLanguage": { + "type": "boolean", + "description": "Indicates whether or not to block the user from changing the language settings." + }, + "settingsBlockChangePowerSleep": { + "type": "boolean", + "description": "Indicates whether or not to block the user from changing power and sleep settings." + }, + "locationServicesBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from location services." + }, + "microsoftAccountBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block a Microsoft account." + }, + "microsoftAccountBlockSettingsSync": { + "type": "boolean", + "description": "Indicates whether or not to Block Microsoft account settings sync." + }, + "nfcBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using near field communication." + }, + "resetProtectionModeBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from reset protection mode." + }, + "screenCaptureBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from taking Screenshots." + }, + "storageBlockRemovableStorage": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using removable storage." + }, + "storageRequireMobileDeviceEncryption": { + "type": "boolean", + "description": "Indicating whether or not to require encryption on a mobile device." + }, + "usbBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from USB connection." + }, + "voiceRecordingBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from voice recording." + }, + "wiFiBlockAutomaticConnectHotspots": { + "type": "boolean", + "description": "Indicating whether or not to block automatically connecting to Wi-Fi hotspots. Has no impact if Wi-Fi is blocked." + }, + "wiFiBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using Wi-Fi." + }, + "wiFiBlockManualConfiguration": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using Wi-Fi manual configuration." + }, + "wiFiScanInterval": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specify how often devices scan for Wi-Fi networks. Supported values are 1-500, where 100 = default, and 500 = low frequency. Valid values 1 to 500", + "nullable": true + }, + "wirelessDisplayBlockProjectionToThisDevice": { + "type": "boolean", + "description": "Indicates whether or not to allow other devices from discovering this PC for projection." + }, + "wirelessDisplayBlockUserInputFromReceiver": { + "type": "boolean", + "description": "Indicates whether or not to allow user input from wireless display receiver." + }, + "wirelessDisplayRequirePinForPairing": { + "type": "boolean", + "description": "Indicates whether or not to require a PIN for new devices to initiate pairing." + }, + "windowsStoreBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using the Windows store." + }, + "appsAllowTrustedAppsSideloading": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.stateManagementSetting" + } + ], + "description": "Indicates whether apps from AppX packages signed with a trusted certificate can be side loaded." + }, + "windowsStoreBlockAutoUpdate": { + "type": "boolean", + "description": "Indicates whether or not to block automatic update of apps from Windows Store." + }, + "developerUnlockSetting": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.stateManagementSetting" + } + ], + "description": "Indicates whether or not to allow developer unlock." + }, + "sharedUserAppDataAllowed": { + "type": "boolean", + "description": "Indicates whether or not to block multiple users of the same app to share data." + }, + "appsBlockWindowsStoreOriginatedApps": { + "type": "boolean", + "description": "Indicates whether or not to disable the launch of all apps from Windows Store that came pre-installed or were downloaded." + }, + "windowsStoreEnablePrivateStoreOnly": { + "type": "boolean", + "description": "Indicates whether or not to enable Private Store Only." + }, + "storageRestrictAppDataToSystemVolume": { + "type": "boolean", + "description": "Indicates whether application data is restricted to the system drive." + }, + "storageRestrictAppInstallToSystemVolume": { + "type": "boolean", + "description": "Indicates whether the installation of applications is restricted to the system drive." + }, + "gameDvrBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block DVR and broadcasting." + }, + "experienceBlockDeviceDiscovery": { + "type": "boolean", + "description": "Indicates whether or not to enable device discovery UX." + }, + "experienceBlockErrorDialogWhenNoSIM": { + "type": "boolean", + "description": "Indicates whether or not to allow the error dialog from displaying if no SIM card is detected." + }, + "experienceBlockTaskSwitcher": { + "type": "boolean", + "description": "Indicates whether or not to enable task switching on the device." + }, + "logonBlockFastUserSwitching": { + "type": "boolean", + "description": "Disables the ability to quickly switch between users that are logged on simultaneously without logging off." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10GeneralConfiguration resource." + } + ] + }, + "microsoft.graph.defenderDetectedMalwareActions": { + "title": "defenderDetectedMalwareActions", + "type": "object", + "properties": { + "lowSeverity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderThreatAction" + } + ], + "description": "Indicates a Defender action to take for low severity Malware threat detected." + }, + "moderateSeverity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderThreatAction" + } + ], + "description": "Indicates a Defender action to take for moderate severity Malware threat detected." + }, + "highSeverity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderThreatAction" + } + ], + "description": "Indicates a Defender action to take for high severity Malware threat detected." + }, + "severeSeverity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.defenderThreatAction" + } + ], + "description": "Indicates a Defender action to take for severe severity Malware threat detected." + } + } + }, + "microsoft.graph.windows10NetworkProxyServer": { + "title": "windows10NetworkProxyServer", + "type": "object", + "properties": { + "address": { + "type": "string", + "description": "Address to the proxy server. Specify an address in the format [“:”]" + }, + "exceptions": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Addresses that should not use the proxy server. The system will not use the proxy server for addresses beginning with what is specified in this node." + }, + "useForLocalAddresses": { + "type": "boolean", + "description": "Specifies whether the proxy server should be used for local (intranet) addresses." + } + } + }, + "microsoft.graph.edgeSearchEngineBase": { + "title": "edgeSearchEngineBase", + "type": "object" + }, + "microsoft.graph.edgeSearchEngineCustom": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.edgeSearchEngineBase" + }, + { + "title": "edgeSearchEngineCustom", + "type": "object", + "properties": { + "edgeSearchEngineOpenSearchXmlUrl": { + "type": "string", + "description": "Points to a https link containing the OpenSearch xml file that contains, at minimum, the short name and the URL to the search Engine." + } + } + } + ] + }, + "microsoft.graph.edgeSearchEngine": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.edgeSearchEngineBase" + }, + { + "title": "edgeSearchEngine", + "type": "object", + "properties": { + "edgeSearchEngineType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.edgeSearchEngineType" + } + ], + "description": "Allows IT admins to set a predefined default search engine for MDM-Controlled devices." + } + } + } + ] + }, + "microsoft.graph.windows10CustomConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows10CustomConfiguration", + "type": "object", + "properties": { + "omaSettings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + } + ], + "nullable": true + }, + "description": "OMA settings. This collection can contain a maximum of 1000 elements." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10CustomConfiguration resource." + } + ] + }, + "microsoft.graph.windows10EnterpriseModernAppManagementConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows10EnterpriseModernAppManagementConfiguration", + "type": "object", + "properties": { + "uninstallBuiltInApps": { + "type": "boolean", + "description": "Indicates whether or not to uninstall a fixed list of built-in Windows apps." + } + }, + "description": "Windows10 Enterprise Modern App Management Configuration." + } + ] + }, + "microsoft.graph.sharedPCConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "sharedPCConfiguration", + "type": "object", + "properties": { + "accountManagerPolicy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharedPCAccountManagerPolicy" + } + ], + "description": "Specifies how accounts are managed on a shared PC. Only applies when disableAccountManager is false.", + "nullable": true + }, + "allowedAccounts": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharedPCAllowedAccountType" + } + ], + "description": "Indicates which type of accounts are allowed to use on a shared PC." + }, + "allowLocalStorage": { + "type": "boolean", + "description": "Specifies whether local storage is allowed on a shared PC." + }, + "disableAccountManager": { + "type": "boolean", + "description": "Disables the account manager for shared PC mode." + }, + "disableEduPolicies": { + "type": "boolean", + "description": "Specifies whether the default shared PC education environment policies should be disabled. For Windows 10 RS2 and later, this policy will be applied without setting Enabled to true." + }, + "disablePowerPolicies": { + "type": "boolean", + "description": "Specifies whether the default shared PC power policies should be disabled." + }, + "disableSignInOnResume": { + "type": "boolean", + "description": "Disables the requirement to sign in whenever the device wakes up from sleep mode." + }, + "enabled": { + "type": "boolean", + "description": "Enables shared PC mode and applies the shared pc policies." + }, + "idleTimeBeforeSleepInSeconds": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies the time in seconds that a device must sit idle before the PC goes to sleep. Setting this value to 0 prevents the sleep timeout from occurring.", + "nullable": true + }, + "kioskAppDisplayName": { + "type": "string", + "description": "Specifies the display text for the account shown on the sign-in screen which launches the app specified by SetKioskAppUserModelId. Only applies when KioskAppUserModelId is set.", + "nullable": true + }, + "kioskAppUserModelId": { + "type": "string", + "description": "Specifies the application user model ID of the app to use with assigned access.", + "nullable": true + }, + "maintenanceStartTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Specifies the daily start time of maintenance hour.", + "format": "time", + "nullable": true + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource." + } + ] + }, + "microsoft.graph.sharedPCAccountManagerPolicy": { + "title": "sharedPCAccountManagerPolicy", + "type": "object", + "properties": { + "accountDeletionPolicy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharedPCAccountDeletionPolicyType" + } + ], + "description": "Configures when accounts are deleted." + }, + "cacheAccountsAboveDiskFreePercentage": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Sets the percentage of available disk space a PC should have before it stops deleting cached shared PC accounts. Only applies when AccountDeletionPolicy is DiskSpaceThreshold or DiskSpaceThresholdOrInactiveThreshold. Valid values 0 to 100", + "format": "int32", + "nullable": true + }, + "inactiveThresholdDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies when the accounts will start being deleted when they have not been logged on during the specified period, given as number of days. Only applies when AccountDeletionPolicy is DiskSpaceThreshold or DiskSpaceThresholdOrInactiveThreshold.", + "format": "int32", + "nullable": true + }, + "removeAccountsBelowDiskFreePercentage": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Sets the percentage of disk space remaining on a PC before cached accounts will be deleted to free disk space. Accounts that have been inactive the longest will be deleted first. Only applies when AccountDeletionPolicy is DiskSpaceThresholdOrInactiveThreshold. Valid values 0 to 100", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.windows10SecureAssessmentConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows10SecureAssessmentConfiguration", + "type": "object", + "properties": { + "launchUri": { + "type": "string", + "description": "Url link to an assessment that's automatically loaded when the secure assessment browser is launched. It has to be a valid Url (http[s]://msdn.microsoft.com/).", + "nullable": true + }, + "configurationAccount": { + "type": "string", + "description": "The account used to configure the Windows device for taking the test. The user can be a domain account (domain\\user), an AAD account (username@tenant.com) or a local account (username).", + "nullable": true + }, + "allowPrinting": { + "type": "boolean", + "description": "Indicates whether or not to allow the app from printing during the test." + }, + "allowScreenCapture": { + "type": "boolean", + "description": "Indicates whether or not to allow screen capture capability during a test." + }, + "allowTextSuggestion": { + "type": "boolean", + "description": "Indicates whether or not to allow text suggestions during the test." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the secureAssessment resource." + } + ] + }, + "microsoft.graph.windowsPhone81CustomConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windowsPhone81CustomConfiguration", + "type": "object", + "properties": { + "omaSettings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.omaSetting" + } + ], + "nullable": true + }, + "description": "OMA settings. This collection can contain a maximum of 1000 elements." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the windowsPhone81CustomConfiguration resource." + } + ] + }, + "microsoft.graph.windowsUpdateForBusinessConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windowsUpdateForBusinessConfiguration", + "type": "object", + "properties": { + "deliveryOptimizationMode": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsDeliveryOptimizationMode" + } + ], + "description": "Delivery Optimization Mode" + }, + "prereleaseFeatures": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.prereleaseFeatures" + } + ], + "description": "The pre-release features." + }, + "automaticUpdateMode": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.automaticUpdateMode" + } + ], + "description": "Automatic update mode." + }, + "microsoftUpdateServiceAllowed": { + "type": "boolean", + "description": "Allow Microsoft Update Service" + }, + "driversExcluded": { + "type": "boolean", + "description": "Exclude Windows update Drivers" + }, + "installationSchedule": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsUpdateInstallScheduleType" + } + ], + "description": "Installation schedule", + "nullable": true + }, + "qualityUpdatesDeferralPeriodInDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Defer Quality Updates by these many days" + }, + "featureUpdatesDeferralPeriodInDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Defer Feature Updates by these many days" + }, + "qualityUpdatesPaused": { + "type": "boolean", + "description": "Pause Quality Updates" + }, + "featureUpdatesPaused": { + "type": "boolean", + "description": "Pause Feature Updates" + }, + "qualityUpdatesPauseExpiryDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Quality Updates Pause Expiry datetime", + "format": "date-time" + }, + "featureUpdatesPauseExpiryDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Feature Updates Pause Expiry datetime", + "format": "date-time" + }, + "businessReadyUpdatesOnly": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsUpdateType" + } + ], + "description": "Determines which branch devices will receive their updates from" + } + }, + "description": "Windows Update for business configuration." + } + ] + }, + "microsoft.graph.windowsUpdateInstallScheduleType": { + "title": "windowsUpdateInstallScheduleType", + "type": "object" + }, + "microsoft.graph.windowsUpdateScheduledInstall": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsUpdateInstallScheduleType" + }, + { + "title": "windowsUpdateScheduledInstall", + "type": "object", + "properties": { + "scheduledInstallDay": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.weeklySchedule" + } + ], + "description": "Scheduled Install Day in week" + }, + "scheduledInstallTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Scheduled Install Time during day", + "format": "time" + } + } + } + ] + }, + "microsoft.graph.windowsUpdateActiveHoursInstall": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsUpdateInstallScheduleType" + }, + { + "title": "windowsUpdateActiveHoursInstall", + "type": "object", + "properties": { + "activeHoursStart": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Active Hours Start", + "format": "time" + }, + "activeHoursEnd": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Active Hours End", + "format": "time" + } + } + } + ] + }, + "microsoft.graph.windows81GeneralConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows81GeneralConfiguration", + "type": "object", + "properties": { + "accountsBlockAddingNonMicrosoftAccountEmail": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from adding email accounts to the device that are not associated with a Microsoft account." + }, + "applyOnlyToWindows81": { + "type": "boolean", + "description": "Value indicating whether this policy only applies to Windows 8.1. This property is read-only." + }, + "browserBlockAutofill": { + "type": "boolean", + "description": "Indicates whether or not to block auto fill." + }, + "browserBlockAutomaticDetectionOfIntranetSites": { + "type": "boolean", + "description": "Indicates whether or not to block automatic detection of Intranet sites." + }, + "browserBlockEnterpriseModeAccess": { + "type": "boolean", + "description": "Indicates whether or not to block enterprise mode access." + }, + "browserBlockJavaScript": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using JavaScript." + }, + "browserBlockPlugins": { + "type": "boolean", + "description": "Indicates whether or not to block plug-ins." + }, + "browserBlockPopups": { + "type": "boolean", + "description": "Indicates whether or not to block popups." + }, + "browserBlockSendingDoNotTrackHeader": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from sending the do not track header." + }, + "browserBlockSingleWordEntryOnIntranetSites": { + "type": "boolean", + "description": "Indicates whether or not to block a single word entry on Intranet sites." + }, + "browserRequireSmartScreen": { + "type": "boolean", + "description": "Indicates whether or not to require the user to use the smart screen filter." + }, + "browserEnterpriseModeSiteListLocation": { + "type": "string", + "description": "The enterprise mode site list location. Could be a local file, local network or http location.", + "nullable": true + }, + "browserInternetSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.internetSiteSecurityLevel" + } + ], + "description": "The internet security level." + }, + "browserIntranetSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.siteSecurityLevel" + } + ], + "description": "The Intranet security level." + }, + "browserLoggingReportLocation": { + "type": "string", + "description": "The logging report location.", + "nullable": true + }, + "browserRequireHighSecurityForRestrictedSites": { + "type": "boolean", + "description": "Indicates whether or not to require high security for restricted sites." + }, + "browserRequireFirewall": { + "type": "boolean", + "description": "Indicates whether or not to require a firewall." + }, + "browserRequireFraudWarning": { + "type": "boolean", + "description": "Indicates whether or not to require fraud warning." + }, + "browserTrustedSitesSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.siteSecurityLevel" + } + ], + "description": "The trusted sites security level." + }, + "cellularBlockDataRoaming": { + "type": "boolean", + "description": "Indicates whether or not to block data roaming." + }, + "diagnosticsBlockDataSubmission": { + "type": "boolean", + "description": "Indicates whether or not to block diagnostic data submission." + }, + "passwordBlockPicturePasswordAndPin": { + "type": "boolean", + "description": "Indicates whether or not to Block the user from using a pictures password and pin." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Password expiration in days.", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The minimum password length.", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The minutes of inactivity before the screen times out.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of previous passwords to prevent re-use of. Valid values 0 to 24", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "passwordSignInFailureCountBeforeFactoryReset": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of sign in failures before factory reset.", + "nullable": true + }, + "storageRequireDeviceEncryption": { + "type": "boolean", + "description": "Indicates whether or not to require encryption on a mobile device." + }, + "updatesRequireAutomaticUpdates": { + "type": "boolean", + "description": "Indicates whether or not to require automatic updates." + }, + "userAccountControlSettings": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsUserAccountControlSettings" + } + ], + "description": "The user account control settings." + }, + "workFoldersUrl": { + "type": "string", + "description": "The work folders url.", + "nullable": true + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows81GeneralConfiguration resource." + } + ] + }, + "microsoft.graph.windowsPhone81GeneralConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windowsPhone81GeneralConfiguration", + "type": "object", + "properties": { + "applyOnlyToWindowsPhone81": { + "type": "boolean", + "description": "Value indicating whether this policy only applies to Windows Phone 8.1. This property is read-only." + }, + "appsBlockCopyPaste": { + "type": "boolean", + "description": "Indicates whether or not to block copy paste." + }, + "bluetoothBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block bluetooth." + }, + "cameraBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block camera." + }, + "cellularBlockWifiTethering": { + "type": "boolean", + "description": "Indicates whether or not to block Wi-Fi tethering. Has no impact if Wi-Fi is blocked." + }, + "compliantAppsList": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListItem" + } + ], + "nullable": true + }, + "description": "List of apps in the compliance (either allow list or block list, controlled by CompliantAppListType). This collection can contain a maximum of 10000 elements." + }, + "compliantAppListType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.appListType" + } + ], + "description": "List that is in the AppComplianceList." + }, + "diagnosticDataBlockSubmission": { + "type": "boolean", + "description": "Indicates whether or not to block diagnostic data submission." + }, + "emailBlockAddingAccounts": { + "type": "boolean", + "description": "Indicates whether or not to block custom email accounts." + }, + "locationServicesBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block location services." + }, + "microsoftAccountBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block using a Microsoft Account." + }, + "nfcBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block Near-Field Communication." + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Indicates whether or not to block syncing the calendar." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires.", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passwords.", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeScreenTimeout": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before screen timeout.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of character sets a password must contain.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block. Valid values 0 to 24", + "nullable": true + }, + "passwordSignInFailureCountBeforeFactoryReset": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of sign in failures allowed before factory reset.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "Password type that is required." + }, + "passwordRequired": { + "type": "boolean", + "description": "Indicates whether or not to require a password." + }, + "screenCaptureBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block screenshots." + }, + "storageBlockRemovableStorage": { + "type": "boolean", + "description": "Indicates whether or not to block removable storage." + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Indicates whether or not to require encryption." + }, + "webBrowserBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the web browser." + }, + "wifiBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block Wi-Fi." + }, + "wifiBlockAutomaticConnectHotspots": { + "type": "boolean", + "description": "Indicates whether or not to block automatically connecting to Wi-Fi hotspots. Has no impact if Wi-Fi is blocked." + }, + "wifiBlockHotspotReporting": { + "type": "boolean", + "description": "Indicates whether or not to block Wi-Fi hotspot reporting. Has no impact if Wi-Fi is blocked." + }, + "windowsStoreBlocked": { + "type": "boolean", + "description": "Indicates whether or not to block the Windows Store." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the windowsPhone81GeneralConfiguration resource." + } + ] + }, + "microsoft.graph.windows10TeamGeneralConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration" + }, + { + "title": "windows10TeamGeneralConfiguration", + "type": "object", + "properties": { + "azureOperationalInsightsBlockTelemetry": { + "type": "boolean", + "description": "Indicates whether or not to Block Azure Operational Insights." + }, + "azureOperationalInsightsWorkspaceId": { + "type": "string", + "description": "The Azure Operational Insights workspace id.", + "nullable": true + }, + "azureOperationalInsightsWorkspaceKey": { + "type": "string", + "description": "The Azure Operational Insights Workspace key.", + "nullable": true + }, + "connectAppBlockAutoLaunch": { + "type": "boolean", + "description": "Specifies whether to automatically launch the Connect app whenever a projection is initiated." + }, + "maintenanceWindowBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block setting a maintenance window for device updates." + }, + "maintenanceWindowDurationInHours": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Maintenance window duration for device updates. Valid values 0 to 5", + "nullable": true + }, + "maintenanceWindowStartTime": { + "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", + "type": "string", + "description": "Maintenance window start time for device updates.", + "format": "time", + "nullable": true + }, + "miracastChannel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.miracastChannel" + } + ], + "description": "The channel." + }, + "miracastBlocked": { + "type": "boolean", + "description": "Indicates whether or not to Block wireless projection." + }, + "miracastRequirePin": { + "type": "boolean", + "description": "Indicates whether or not to require a pin for wireless projection." + }, + "settingsBlockMyMeetingsAndFiles": { + "type": "boolean", + "description": "Specifies whether to disable the \"My meetings and files\" feature in the Start menu, which shows the signed-in user's meetings and files from Office 365." + }, + "settingsBlockSessionResume": { + "type": "boolean", + "description": "Specifies whether to allow the ability to resume a session when the session times out." + }, + "settingsBlockSigninSuggestions": { + "type": "boolean", + "description": "Specifies whether to disable auto-populating of the sign-in dialog with invitees from scheduled meetings." + }, + "settingsDefaultVolume": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies the default volume value for a new session. Permitted values are 0-100. The default is 45. Valid values 0 to 100", + "nullable": true + }, + "settingsScreenTimeoutInMinutes": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies the number of minutes until the Hub screen turns off.", + "nullable": true + }, + "settingsSessionTimeoutInMinutes": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies the number of minutes until the session times out.", + "nullable": true + }, + "settingsSleepTimeoutInMinutes": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Specifies the number of minutes until the Hub enters sleep mode.", + "nullable": true + }, + "welcomeScreenBlockAutomaticWakeUp": { + "type": "boolean", + "description": "Indicates whether or not to Block the welcome screen from waking up automatically when someone enters the room." + }, + "welcomeScreenBackgroundImageUrl": { + "type": "string", + "description": "The welcome screen background image URL. The URL must use the HTTPS protocol and return a PNG image.", + "nullable": true + }, + "welcomeScreenMeetingInformation": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.welcomeScreenMeetingInformation" + } + ], + "description": "The welcome screen meeting information shown." + } + }, + "description": "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10TeamGeneralConfiguration resource." + } + ] + }, + "microsoft.graph.androidCompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "androidCompliancePolicy", + "type": "object", + "properties": { + "passwordRequired": { + "type": "boolean", + "description": "Require a password to unlock device." + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum password length. Valid values 4 to 16", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidRequiredPasswordType" + } + ], + "description": "Type of characters in password" + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires. Valid values 1 to 65535", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block.", + "nullable": true + }, + "securityPreventInstallAppsFromUnknownSources": { + "type": "boolean", + "description": "Require that devices disallow installation of apps from unknown sources." + }, + "securityDisableUsbDebugging": { + "type": "boolean", + "description": "Disable USB debugging on Android devices." + }, + "securityRequireVerifyApps": { + "type": "boolean", + "description": "Require the Android Verify apps feature is turned on." + }, + "deviceThreatProtectionEnabled": { + "type": "boolean", + "description": "Require that devices have enabled device threat protection." + }, + "deviceThreatProtectionRequiredSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceThreatProtectionLevel" + } + ], + "description": "Require Mobile Threat Protection minimum risk level to report noncompliance." + }, + "securityBlockJailbrokenDevices": { + "type": "boolean", + "description": "Devices must not be jailbroken or rooted." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum Android version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum Android version.", + "nullable": true + }, + "minAndroidSecurityPatchLevel": { + "type": "string", + "description": "Minimum Android security patch level.", + "nullable": true + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Require encryption on Android devices." + }, + "securityRequireSafetyNetAttestationBasicIntegrity": { + "type": "boolean", + "description": "Require the device to pass the SafetyNet basic integrity check." + }, + "securityRequireSafetyNetAttestationCertifiedDevice": { + "type": "boolean", + "description": "Require the device to pass the SafetyNet certified device check." + }, + "securityRequireGooglePlayServices": { + "type": "boolean", + "description": "Require Google Play Services to be installed and enabled on the device." + }, + "securityRequireUpToDateSecurityProviders": { + "type": "boolean", + "description": "Require the device to have up to date security providers. The device will require Google Play Services to be enabled and up to date." + }, + "securityRequireCompanyPortalAppIntegrity": { + "type": "boolean", + "description": "Require the device to pass the Company Portal client app runtime integrity check." + } + }, + "description": "This class contains compliance settings for Android." + } + ] + }, + "microsoft.graph.androidWorkProfileCompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "androidWorkProfileCompliancePolicy", + "type": "object", + "properties": { + "passwordRequired": { + "type": "boolean", + "description": "Require a password to unlock device." + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum password length. Valid values 4 to 16", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.androidRequiredPasswordType" + } + ], + "description": "Type of characters in password" + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires. Valid values 1 to 365", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block.", + "nullable": true + }, + "securityPreventInstallAppsFromUnknownSources": { + "type": "boolean", + "description": "Require that devices disallow installation of apps from unknown sources." + }, + "securityDisableUsbDebugging": { + "type": "boolean", + "description": "Disable USB debugging on Android devices." + }, + "securityRequireVerifyApps": { + "type": "boolean", + "description": "Require the Android Verify apps feature is turned on." + }, + "deviceThreatProtectionEnabled": { + "type": "boolean", + "description": "Require that devices have enabled device threat protection." + }, + "deviceThreatProtectionRequiredSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceThreatProtectionLevel" + } + ], + "description": "Require Mobile Threat Protection minimum risk level to report noncompliance." + }, + "securityBlockJailbrokenDevices": { + "type": "boolean", + "description": "Devices must not be jailbroken or rooted." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum Android version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum Android version.", + "nullable": true + }, + "minAndroidSecurityPatchLevel": { + "type": "string", + "description": "Minimum Android security patch level.", + "nullable": true + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Require encryption on Android devices." + }, + "securityRequireSafetyNetAttestationBasicIntegrity": { + "type": "boolean", + "description": "Require the device to pass the SafetyNet basic integrity check." + }, + "securityRequireSafetyNetAttestationCertifiedDevice": { + "type": "boolean", + "description": "Require the device to pass the SafetyNet certified device check." + }, + "securityRequireGooglePlayServices": { + "type": "boolean", + "description": "Require Google Play Services to be installed and enabled on the device." + }, + "securityRequireUpToDateSecurityProviders": { + "type": "boolean", + "description": "Require the device to have up to date security providers. The device will require Google Play Services to be enabled and up to date." + }, + "securityRequireCompanyPortalAppIntegrity": { + "type": "boolean", + "description": "Require the device to pass the Company Portal client app runtime integrity check." + } + }, + "description": "This class contains compliance settings for Android Work Profile." + } + ] + }, + "microsoft.graph.iosCompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "iosCompliancePolicy", + "type": "object", + "properties": { + "passcodeBlockSimple": { + "type": "boolean", + "description": "Indicates whether or not to block simple passcodes." + }, + "passcodeExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the passcode expires. Valid values 1 to 65535", + "nullable": true + }, + "passcodeMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passcode. Valid values 4 to 14", + "nullable": true + }, + "passcodeMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a passcode is required.", + "nullable": true + }, + "passcodePreviousPasscodeBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passcodes to block. Valid values 1 to 24", + "nullable": true + }, + "passcodeMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passcodeRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required passcode type." + }, + "passcodeRequired": { + "type": "boolean", + "description": "Indicates whether or not to require a passcode." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum IOS version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum IOS version.", + "nullable": true + }, + "securityBlockJailbrokenDevices": { + "type": "boolean", + "description": "Devices must not be jailbroken or rooted." + }, + "deviceThreatProtectionEnabled": { + "type": "boolean", + "description": "Require that devices have enabled device threat protection ." + }, + "deviceThreatProtectionRequiredSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceThreatProtectionLevel" + } + ], + "description": "Require Mobile Threat Protection minimum risk level to report noncompliance." + }, + "managedEmailProfileRequired": { + "type": "boolean", + "description": "Indicates whether or not to require a managed email profile." + } + }, + "description": "This class contains compliance settings for IOS." + } + ] + }, + "microsoft.graph.macOSCompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "macOSCompliancePolicy", + "type": "object", + "properties": { + "passwordRequired": { + "type": "boolean", + "description": "Whether or not to require a password." + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Indicates whether or not to block simple passwords." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires. Valid values 1 to 65535", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of password. Valid values 4 to 14", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block. Valid values 1 to 24", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum IOS version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum IOS version.", + "nullable": true + }, + "systemIntegrityProtectionEnabled": { + "type": "boolean", + "description": "Require that devices have enabled system integrity protection." + }, + "deviceThreatProtectionEnabled": { + "type": "boolean", + "description": "Require that devices have enabled device threat protection ." + }, + "deviceThreatProtectionRequiredSecurityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceThreatProtectionLevel" + } + ], + "description": "Require Mobile Threat Protection minimum risk level to report noncompliance." + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Require encryption on Mac OS devices." + }, + "firewallEnabled": { + "type": "boolean", + "description": "Whether the firewall should be enabled or not." + }, + "firewallBlockAllIncoming": { + "type": "boolean", + "description": "Corresponds to the “Block all incoming connections” option." + }, + "firewallEnableStealthMode": { + "type": "boolean", + "description": "Corresponds to “Enable stealth mode.”" + } + }, + "description": "This class contains compliance settings for Mac OS." + } + ] + }, + "microsoft.graph.windows10CompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "windows10CompliancePolicy", + "type": "object", + "properties": { + "passwordRequired": { + "type": "boolean", + "description": "Require a password to unlock Windows device." + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Indicates whether or not to block simple password." + }, + "passwordRequiredToUnlockFromIdle": { + "type": "boolean", + "description": "Require a password to unlock an idle device." + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The password expiration in days.", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The minimum password length.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of previous passwords to prevent re-use of.", + "nullable": true + }, + "requireHealthyDeviceReport": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum Windows 10 version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum Windows 10 version.", + "nullable": true + }, + "mobileOsMinimumVersion": { + "type": "string", + "description": "Minimum Windows Phone version.", + "nullable": true + }, + "mobileOsMaximumVersion": { + "type": "string", + "description": "Maximum Windows Phone version.", + "nullable": true + }, + "earlyLaunchAntiMalwareDriverEnabled": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation - early launch antimalware driver is enabled." + }, + "bitLockerEnabled": { + "type": "boolean", + "description": "Require devices to be reported healthy by Windows Device Health Attestation - bit locker is enabled" + }, + "secureBootEnabled": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation - secure boot is enabled." + }, + "codeIntegrityEnabled": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation." + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Require encryption on windows devices." + } + }, + "description": "This class contains compliance settings for Windows 10." + } + ] + }, + "microsoft.graph.windows10MobileCompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "windows10MobileCompliancePolicy", + "type": "object", + "properties": { + "passwordRequired": { + "type": "boolean", + "description": "Require a password to unlock Windows Phone device." + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Whether or not to block syncing the calendar." + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum password length. Valid values 4 to 16", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of previous passwords to prevent re-use of.", + "nullable": true + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before password expiration. Valid values 1 to 255", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordRequireToUnlockFromIdle": { + "type": "boolean", + "description": "Require a password to unlock an idle device." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum Windows Phone version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum Windows Phone version.", + "nullable": true + }, + "earlyLaunchAntiMalwareDriverEnabled": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation - early launch antimalware driver is enabled." + }, + "bitLockerEnabled": { + "type": "boolean", + "description": "Require devices to be reported healthy by Windows Device Health Attestation - bit locker is enabled" + }, + "secureBootEnabled": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation - secure boot is enabled." + }, + "codeIntegrityEnabled": { + "type": "boolean", + "description": "Require devices to be reported as healthy by Windows Device Health Attestation." + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Require encryption on windows devices." + } + }, + "description": "This class contains compliance settings for Windows 10 Mobile." + } + ] + }, + "microsoft.graph.windows81CompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "windows81CompliancePolicy", + "type": "object", + "properties": { + "passwordRequired": { + "type": "boolean", + "description": "Require a password to unlock Windows device." + }, + "passwordBlockSimple": { + "type": "boolean", + "description": "Indicates whether or not to block simple password." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Password expiration in days.", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The minimum password length.", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of previous passwords to prevent re-use of. Valid values 0 to 24", + "nullable": true + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum Windows 8.1 version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum Windows 8.1 version.", + "nullable": true + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Indicates whether or not to require encryption on a windows 8.1 device." + } + }, + "description": "This class contains compliance settings for Windows 8.1." + } + ] + }, + "microsoft.graph.windowsPhone81CompliancePolicy": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicy" + }, + { + "title": "windowsPhone81CompliancePolicy", + "type": "object", + "properties": { + "passwordBlockSimple": { + "type": "boolean", + "description": "Whether or not to block syncing the calendar." + }, + "passwordExpirationDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of days before the password expires.", + "nullable": true + }, + "passwordMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minimum length of passwords.", + "nullable": true + }, + "passwordMinutesOfInactivityBeforeLock": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Minutes of inactivity before a password is required.", + "nullable": true + }, + "passwordMinimumCharacterSetCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "The number of character sets required in the password.", + "nullable": true + }, + "passwordRequiredType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.requiredPasswordType" + } + ], + "description": "The required password type." + }, + "passwordPreviousPasswordBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of previous passwords to block. Valid values 0 to 24", + "nullable": true + }, + "passwordRequired": { + "type": "boolean", + "description": "Whether or not to require a password." + }, + "osMinimumVersion": { + "type": "string", + "description": "Minimum Windows Phone version.", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Maximum Windows Phone version.", + "nullable": true + }, + "storageRequireEncryption": { + "type": "boolean", + "description": "Require encryption on windows phone devices." + } + }, + "description": "This class contains compliance settings for Windows 8.1 Mobile." + } + ] + }, + "microsoft.graph.deviceComplianceSettingState": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceComplianceSettingState", + "type": "object", + "properties": { + "setting": { + "type": "string", + "description": "The setting class name and property name.", + "nullable": true + }, + "settingName": { + "type": "string", + "description": "The Setting Name that is being reported", + "nullable": true + }, + "deviceId": { + "type": "string", + "description": "The Device Id that is being reported", + "nullable": true + }, + "deviceName": { + "type": "string", + "description": "The Device Name that is being reported", + "nullable": true + }, + "userId": { + "type": "string", + "description": "The user Id that is being reported", + "nullable": true + }, + "userEmail": { + "type": "string", + "description": "The User email address that is being reported", + "nullable": true + }, + "userName": { + "type": "string", + "description": "The User Name that is being reported", + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "description": "The User PrincipalName that is being reported", + "nullable": true + }, + "deviceModel": { + "type": "string", + "description": "The device model that is being reported", + "nullable": true + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "The compliance state of the setting" + }, + "complianceGracePeriodExpirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The DateTime when device compliance grace period expires", + "format": "date-time" + } + }, + "description": "Device compliance setting State for a given device." + } + ] + }, + "microsoft.graph.deviceConfigurationSettingState": { + "title": "deviceConfigurationSettingState", + "type": "object", + "properties": { + "setting": { + "type": "string", + "description": "The setting that is being reported", + "nullable": true + }, + "settingName": { + "type": "string", + "description": "Localized/user friendly setting name that is being reported", + "nullable": true + }, + "instanceDisplayName": { + "type": "string", + "description": "Name of setting instance that is being reported.", + "nullable": true + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "The compliance state of the setting" + }, + "errorCode": { + "type": "integer", + "description": "Error code for the setting", + "format": "int64" + }, + "errorDescription": { + "type": "string", + "description": "Error description", + "nullable": true + }, + "userId": { + "type": "string", + "description": "UserId", + "nullable": true + }, + "userName": { + "type": "string", + "description": "UserName", + "nullable": true + }, + "userEmail": { + "type": "string", + "description": "UserEmail", + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + }, + "sources": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.settingSource" + } + ], + "nullable": true + }, + "description": "Contributing policies" + }, + "currentValue": { + "type": "string", + "description": "Current value of setting on device", + "nullable": true + } + } + }, + "microsoft.graph.settingSource": { + "title": "settingSource", + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "displayName": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.deviceCompliancePolicySettingState": { + "title": "deviceCompliancePolicySettingState", + "type": "object", + "properties": { + "setting": { + "type": "string", + "description": "The setting that is being reported", + "nullable": true + }, + "settingName": { + "type": "string", + "description": "Localized/user friendly setting name that is being reported", + "nullable": true + }, + "instanceDisplayName": { + "type": "string", + "description": "Name of setting instance that is being reported.", + "nullable": true + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.complianceStatus" + } + ], + "description": "The compliance state of the setting" + }, + "errorCode": { + "type": "integer", + "description": "Error code for the setting", + "format": "int64" + }, + "errorDescription": { + "type": "string", + "description": "Error description", + "nullable": true + }, + "userId": { + "type": "string", + "description": "UserId", + "nullable": true + }, + "userName": { + "type": "string", + "description": "UserName", + "nullable": true + }, + "userEmail": { + "type": "string", + "description": "UserEmail", + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "description": "UserPrincipalName.", + "nullable": true + }, + "sources": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.settingSource" + } + ], + "nullable": true + }, + "description": "Contributing policies" + }, + "currentValue": { + "type": "string", + "description": "Current value of setting on device", + "nullable": true + } + } + }, + "microsoft.graph.enrollmentConfigurationAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "enrollmentConfigurationAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceEnrollmentLimitConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + }, + { + "title": "deviceEnrollmentLimitConfiguration", + "type": "object", + "properties": { + "limit": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + } + } + } + ] + }, + "microsoft.graph.deviceEnrollmentPlatformRestrictionsConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + }, + { + "title": "deviceEnrollmentPlatformRestrictionsConfiguration", + "type": "object", + "properties": { + "iosRestriction": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestriction" + } + ], + "nullable": true + }, + "windowsRestriction": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestriction" + } + ], + "nullable": true + }, + "windowsMobileRestriction": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestriction" + } + ], + "nullable": true + }, + "androidRestriction": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestriction" + } + ], + "nullable": true + }, + "macOSRestriction": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestriction" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.deviceEnrollmentPlatformRestriction": { + "title": "deviceEnrollmentPlatformRestriction", + "type": "object", + "properties": { + "platformBlocked": { + "type": "boolean", + "description": "Block the platform from enrolling" + }, + "personalDeviceEnrollmentBlocked": { + "type": "boolean", + "description": "Block personally owned devices from enrolling" + }, + "osMinimumVersion": { + "type": "string", + "description": "Min OS version supported", + "nullable": true + }, + "osMaximumVersion": { + "type": "string", + "description": "Max OS version supported", + "nullable": true + } + } + }, + "microsoft.graph.deviceEnrollmentWindowsHelloForBusinessConfiguration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration" + }, + { + "title": "deviceEnrollmentWindowsHelloForBusinessConfiguration", + "type": "object", + "properties": { + "pinMinimumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "pinMaximumLength": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "pinUppercaseCharactersUsage": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsHelloForBusinessPinUsage" + } + ] + }, + "pinLowercaseCharactersUsage": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsHelloForBusinessPinUsage" + } + ] + }, + "pinSpecialCharactersUsage": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsHelloForBusinessPinUsage" + } + ] + }, + "state": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.enablement" + } + ] + }, + "securityDeviceRequired": { + "type": "boolean" + }, + "unlockWithBiometricsEnabled": { + "type": "boolean" + }, + "remotePassportEnabled": { + "type": "boolean" + }, + "pinPreviousBlockCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "pinExpirationInDays": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "enhancedBiometricsState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.enablement" + } + ] + } + } + } + ] + }, + "microsoft.graph.managedMobileApp": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedMobileApp", + "type": "object", + "properties": { + "mobileAppIdentifier": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppIdentifier" + } + ], + "description": "The identifier for an app with it's operating system type.", + "nullable": true + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + } + }, + "description": "The identifier for the deployment an app." + } + ] + }, + "microsoft.graph.mobileAppIdentifier": { + "title": "mobileAppIdentifier", + "type": "object" + }, + "microsoft.graph.targetedManagedAppPolicyAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "targetedManagedAppPolicyAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "Identifier for deployment of a group or app", + "nullable": true + } + }, + "description": "The type for deployment of groups or apps." + } + ] + }, + "microsoft.graph.managedAppDiagnosticStatus": { + "title": "managedAppDiagnosticStatus", + "type": "object", + "properties": { + "validationName": { + "type": "string", + "description": "The validation friendly name", + "nullable": true + }, + "state": { + "type": "string", + "description": "The state of the operation", + "nullable": true + }, + "mitigationInstruction": { + "type": "string", + "description": "Instruction on how to mitigate a failed validation", + "nullable": true + } + } + }, + "microsoft.graph.managedAppOperation": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedAppOperation", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "The operation name.", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "The last time the app operation was modified.", + "format": "date-time" + }, + "state": { + "type": "string", + "description": "The current state of the operation", + "nullable": true + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + } + }, + "description": "Represents an operation applied against an app registration." + } + ] + }, + "microsoft.graph.keyValuePair": { + "title": "keyValuePair", + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Name for this key-value pair" + }, + "value": { + "type": "string", + "description": "Value for this key-value pair", + "nullable": true + } + } + }, + "microsoft.graph.managedAppPolicyDeploymentSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedAppPolicyDeploymentSummary", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "configurationDeployedUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer" + }, + "lastRefreshTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "configurationDeploymentSummaryPerApp": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummaryPerApp" + } + ], + "nullable": true + } + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + } + }, + "description": "The ManagedAppEntity is the base entity type for all other entity types under app management workflow." + } + ] + }, + "microsoft.graph.windowsInformationProtectionResourceCollection": { + "title": "windowsInformationProtectionResourceCollection", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display name" + }, + "resources": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Collection of resources" + } + } + }, + "microsoft.graph.windowsInformationProtectionDataRecoveryCertificate": { + "title": "windowsInformationProtectionDataRecoveryCertificate", + "type": "object", + "properties": { + "subjectName": { + "type": "string", + "description": "Data recovery Certificate subject name", + "nullable": true + }, + "description": { + "type": "string", + "description": "Data recovery Certificate description", + "nullable": true + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Data recovery Certificate expiration datetime", + "format": "date-time" + }, + "certificate": { + "type": "string", + "description": "Data recovery Certificate", + "format": "base64url", + "nullable": true + } + } + }, + "microsoft.graph.windowsInformationProtectionApp": { + "title": "windowsInformationProtectionApp", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "App display name." + }, + "description": { + "type": "string", + "description": "The app's description.", + "nullable": true + }, + "publisherName": { + "type": "string", + "description": "The publisher name", + "nullable": true + }, + "productName": { + "type": "string", + "description": "The product name.", + "nullable": true + }, + "denied": { + "type": "boolean", + "description": "If true, app is denied protection or exemption." + } + } + }, + "microsoft.graph.windowsInformationProtectionProxiedDomainCollection": { + "title": "windowsInformationProtectionProxiedDomainCollection", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display name" + }, + "proxiedDomains": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.proxiedDomain" + }, + "description": "Collection of proxied domains" + } + } + }, + "microsoft.graph.proxiedDomain": { + "title": "proxiedDomain", + "type": "object", + "properties": { + "ipAddressOrFQDN": { + "type": "string", + "description": "The IP address or FQDN" + }, + "proxy": { + "type": "string", + "description": "Proxy IP", + "nullable": true + } + } + }, + "microsoft.graph.windowsInformationProtectionIPRangeCollection": { + "title": "windowsInformationProtectionIPRangeCollection", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "Display name" + }, + "ranges": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.ipRange" + }, + "description": "Collection of ip ranges" + } + } + }, + "microsoft.graph.ipRange": { + "title": "ipRange", + "type": "object" + }, + "microsoft.graph.windowsInformationProtectionAppLockerFile": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "windowsInformationProtectionAppLockerFile", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "description": "The friendly name", + "nullable": true + }, + "fileHash": { + "type": "string", + "description": "SHA256 hash of the file", + "nullable": true + }, + "file": { + "type": "string", + "description": "File as a byte array", + "format": "base64url", + "nullable": true + }, + "version": { + "type": "string", + "description": "Version of the entity.", + "nullable": true + } + }, + "description": "Windows Information Protection AppLocker File" + } + ] + }, + "microsoft.graph.androidMobileAppIdentifier": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppIdentifier" + }, + { + "title": "androidMobileAppIdentifier", + "type": "object", + "properties": { + "packageId": { + "type": "string", + "description": "The identifier for an app, as specified in the play store." + } + } + } + ] + }, + "microsoft.graph.iosMobileAppIdentifier": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppIdentifier" + }, + { + "title": "iosMobileAppIdentifier", + "type": "object", + "properties": { + "bundleId": { + "type": "string", + "description": "The identifier for an app, as specified in the app store." + } + } + } + ] + }, + "microsoft.graph.managedAppPolicyDeploymentSummaryPerApp": { + "title": "managedAppPolicyDeploymentSummaryPerApp", + "type": "object", + "properties": { + "mobileAppIdentifier": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.mobileAppIdentifier" + } + ], + "description": "Deployment of an app.", + "nullable": true + }, + "configurationAppliedUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of users the policy is applied.", + "format": "int32" + } + } + }, + "microsoft.graph.windowsInformationProtectionStoreApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionApp" + }, + { + "title": "windowsInformationProtectionStoreApp", + "type": "object" + } + ] + }, + "microsoft.graph.windowsInformationProtectionDesktopApp": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.windowsInformationProtectionApp" + }, + { + "title": "windowsInformationProtectionDesktopApp", + "type": "object", + "properties": { + "binaryName": { + "type": "string", + "description": "The binary name." + }, + "binaryVersionLow": { + "type": "string", + "description": "The lower binary version.", + "nullable": true + }, + "binaryVersionHigh": { + "type": "string", + "description": "The high binary version.", + "nullable": true + } + } + } + ] + }, + "microsoft.graph.iPv6Range": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ipRange" + }, + { + "title": "iPv6Range", + "type": "object", + "properties": { + "lowerAddress": { + "type": "string", + "description": "Lower IP Address" + }, + "upperAddress": { + "type": "string", + "description": "Upper IP Address" + } + } + } + ] + }, + "microsoft.graph.iPv4Range": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.ipRange" + }, + { + "title": "iPv4Range", + "type": "object", + "properties": { + "lowerAddress": { + "type": "string", + "description": "Lower IP Address" + }, + "upperAddress": { + "type": "string", + "description": "Upper IP Address" + } + } + } + ] + }, + "microsoft.graph.iosManagedAppRegistration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + }, + { + "title": "iosManagedAppRegistration", + "type": "object", + "description": "Represents the synchronization details of an ios app, with management capabilities, for a specific user." + } + ] + }, + "microsoft.graph.androidManagedAppRegistration": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppRegistration" + }, + { + "title": "androidManagedAppRegistration", + "type": "object", + "description": "Represents the synchronization details of an android app, with management capabilities, for a specific user." + } + ] + }, + "microsoft.graph.managedAppStatusRaw": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedAppStatus" + }, + { + "title": "managedAppStatusRaw", + "type": "object", + "properties": { + "content": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "description": "Status report content.", + "nullable": true + } + }, + "description": "Represents an un-typed status report about organizations app protection and configuration." + } + ] + }, + "microsoft.graph.localizedNotificationMessage": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "localizedNotificationMessage", + "type": "object", + "properties": { + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "DateTime the object was last modified.", + "format": "date-time" + }, + "locale": { + "type": "string", + "description": "The Locale for which this message is destined." + }, + "subject": { + "type": "string", + "description": "The Message Template Subject." + }, + "messageTemplate": { + "type": "string", + "description": "The Message Template content." + }, + "isDefault": { + "type": "boolean", + "description": "Flag to indicate whether or not this is the default locale for language fallback. This flag can only be set. To unset, set this property to true on another Localized Notification Message." + } + }, + "description": "The text content of a Notification Message Template for the specified locale." + } + ] + }, + "microsoft.graph.rolePermission": { + "title": "rolePermission", + "type": "object", + "properties": { + "resourceActions": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceAction" + } + ], + "nullable": true + }, + "description": "Actions" + } + } + }, + "microsoft.graph.resourceAction": { + "title": "resourceAction", + "type": "object", + "properties": { + "allowedResourceActions": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Allowed Actions" + }, + "notAllowedResourceActions": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Not Allowed Actions" + } + } + }, + "microsoft.graph.deviceAndAppManagementRoleDefinition": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.roleDefinition" + }, + { + "title": "deviceAndAppManagementRoleDefinition", + "type": "object", + "description": "The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role." + } + ] + }, + "microsoft.graph.managedEBookAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "managedEBookAssignment", + "type": "object", + "properties": { + "target": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + ], + "description": "The assignment target for eBook.", + "nullable": true + }, + "installIntent": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.installIntent" + } + ], + "description": "The install intent for eBook." + } + }, + "description": "Contains properties used to assign a eBook to a group." + } + ] + }, + "microsoft.graph.eBookInstallSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "eBookInstallSummary", + "type": "object", + "properties": { + "installedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Devices that have successfully installed this book." + }, + "failedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Devices that have failed to install this book." + }, + "notInstalledDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Devices that does not have this book installed." + }, + "installedUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Users whose devices have all succeeded to install this book." + }, + "failedUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Users that have 1 or more device that failed to install this book." + }, + "notInstalledUserCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Number of Users that did not install this book." + } + }, + "description": "Contains properties for the installation summary of a book for a device." + } + ] + }, + "microsoft.graph.deviceInstallState": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "deviceInstallState", + "type": "object", + "properties": { + "deviceName": { + "type": "string", + "description": "Device name.", + "nullable": true + }, + "deviceId": { + "type": "string", + "description": "Device Id.", + "nullable": true + }, + "lastSyncDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "description": "Last sync date and time.", + "format": "date-time" + }, + "installState": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.installState" + } + ], + "description": "The install state of the eBook." + }, + "errorCode": { + "type": "string", + "description": "The error code for install failures.", + "nullable": true + }, + "osVersion": { + "type": "string", + "description": "OS Version.", + "nullable": true + }, + "osDescription": { + "type": "string", + "description": "OS Description.", + "nullable": true + }, + "userName": { + "type": "string", + "description": "Device User Name.", + "nullable": true + } + }, + "description": "Contains properties for the installation state for a device." + } + ] + }, + "microsoft.graph.userInstallStateSummary": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "userInstallStateSummary", + "type": "object", + "properties": { + "userName": { + "type": "string", + "description": "User name.", + "nullable": true + }, + "installedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Installed Device Count." + }, + "failedDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Failed Device Count." + }, + "notInstalledDeviceCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Not installed device count." + }, + "deviceStates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.deviceInstallState" + }, + "description": "The install state of the eBook." + } + }, + "description": "Contains properties for the installation state summary for a user." + } + ] + }, + "microsoft.graph.iosVppEBookAssignment": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedEBookAssignment" + }, + { + "title": "iosVppEBookAssignment", + "type": "object", + "description": "Contains properties used to assign an iOS VPP EBook to a group." + } + ] + }, + "microsoft.graph.iosVppEBook": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.managedEBook" + }, + { + "title": "iosVppEBook", + "type": "object", + "properties": { + "vppTokenId": { + "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", + "type": "string", + "description": "The Vpp token ID.", + "format": "uuid" + }, + "appleId": { + "type": "string", + "description": "The Apple ID associated with Vpp token.", + "nullable": true + }, + "vppOrganizationName": { + "type": "string", + "description": "The Vpp token's organization name.", + "nullable": true + }, + "genres": { + "type": "array", + "items": { + "type": "string", + "nullable": true + }, + "description": "Genres." + }, + "language": { + "type": "string", + "description": "Language.", + "nullable": true + }, + "seller": { + "type": "string", + "description": "Seller.", + "nullable": true + }, + "totalLicenseCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Total license count." + }, + "usedLicenseCount": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "description": "Used license count." + } + }, + "description": "A class containing the properties for iOS Vpp eBook." + } + ] + }, + "microsoft.graph.enrollmentTroubleshootingEvent": { + "allOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent" + }, + { + "title": "enrollmentTroubleshootingEvent", + "type": "object", + "properties": { + "managedDeviceIdentifier": { + "type": "string", + "description": "Device identifier created or collected by Intune.", + "nullable": true + }, + "operatingSystem": { + "type": "string", + "description": "Operating System.", + "nullable": true + }, + "osVersion": { + "type": "string", + "description": "OS Version.", + "nullable": true + }, + "userId": { + "type": "string", + "description": "Identifier for the user that tried to enroll the device.", + "nullable": true + }, + "deviceId": { + "type": "string", + "description": "Azure AD device identifier.", + "nullable": true + }, + "enrollmentType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentType" + } + ], + "description": "Type of the enrollment." + }, + "failureCategory": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.deviceEnrollmentFailureReason" + } + ], + "description": "Highlevel failure category." + }, + "failureReason": { + "type": "string", + "description": "Detailed failure reason.", + "nullable": true + } + }, + "description": "Event representing an enrollment failure." + } + ] + }, + "microsoft.graph.activityHistoryItem": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "activityHistoryItem", + "type": "object", + "properties": { + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.status" + } + ], + "nullable": true + }, + "activeDurationSeconds": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastActiveDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "expirationDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "startedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "userTimezone": { + "type": "string", + "nullable": true + }, + "activity": { + "$ref": "#/components/schemas/microsoft.graph.userActivity" + } + } + } + ] + }, + "microsoft.graph.imageInfo": { + "title": "imageInfo", + "type": "object", + "properties": { + "iconUrl": { + "type": "string", + "nullable": true + }, + "alternativeText": { + "type": "string", + "nullable": true + }, + "alternateText": { + "type": "string", + "nullable": true + }, + "addImageQuery": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.visualInfo": { + "title": "visualInfo", + "type": "object", + "properties": { + "attribution": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.imageInfo" + } + ], + "nullable": true + }, + "backgroundColor": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "displayText": { + "type": "string" + }, + "content": { + "anyOf": [ + { + "$ref": "#/components/schemas/Json" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.security": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "security", + "type": "object", + "properties": { + "alerts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/microsoft.graph.alert" + } + } + } + } + ] + }, + "microsoft.graph.alert": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "alert", + "type": "object", + "properties": { + "activityGroupName": { + "type": "string", + "nullable": true + }, + "assignedTo": { + "type": "string", + "nullable": true + }, + "azureSubscriptionId": { + "type": "string", + "nullable": true + }, + "azureTenantId": { + "type": "string" + }, + "category": { + "type": "string", + "nullable": true + }, + "closedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "cloudAppStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.cloudAppSecurityState" + } + ], + "nullable": true + } + }, + "comments": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "confidence": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "description": { + "type": "string", + "nullable": true + }, + "detectionIds": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "eventDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time" + }, + "feedback": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.alertFeedback" + } + ], + "nullable": true + }, + "fileStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileSecurityState" + } + ], + "nullable": true + } + }, + "hostStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.hostSecurityState" + } + ], + "nullable": true + } + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "malwareStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.malwareState" + } + ], + "nullable": true + } + }, + "networkConnections": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.networkConnection" + } + ], + "nullable": true + } + }, + "processes": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.process" + } + ], + "nullable": true + } + }, + "recommendedActions": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "registryKeyStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.registryKeyState" + } + ], + "nullable": true + } + }, + "severity": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.alertSeverity" + } + ] + }, + "sourceMaterials": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.alertStatus" + } + ] + }, + "tags": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + }, + "title": { + "type": "string", + "nullable": true + }, + "triggers": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.alertTrigger" + } + ], + "nullable": true + } + }, + "userStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.userSecurityState" + } + ], + "nullable": true + } + }, + "vendorInformation": { + "$ref": "#/components/schemas/microsoft.graph.securityVendorInformation" + }, + "vulnerabilityStates": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.vulnerabilityState" + } + ], + "nullable": true + } + } + } + } + ] + }, + "microsoft.graph.cloudAppSecurityState": { + "title": "cloudAppSecurityState", + "type": "object", + "properties": { + "destinationServiceIp": { + "type": "string", + "nullable": true + }, + "destinationServiceName": { + "type": "string", + "nullable": true + }, + "riskScore": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.fileSecurityState": { + "title": "fileSecurityState", + "type": "object", + "properties": { + "fileHash": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileHash" + } + ], + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "path": { + "type": "string", + "nullable": true + }, + "riskScore": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.fileHash": { + "title": "fileHash", + "type": "object", + "properties": { + "hashType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileHashType" + } + ], + "nullable": true + }, + "hashValue": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.hostSecurityState": { + "title": "hostSecurityState", + "type": "object", + "properties": { + "fqdn": { + "type": "string", + "nullable": true + }, + "isAzureAdJoined": { + "type": "boolean", + "nullable": true + }, + "isAzureAdRegistered": { + "type": "boolean", + "nullable": true + }, + "isHybridAzureDomainJoined": { + "type": "boolean", + "nullable": true + }, + "netBiosName": { + "type": "string", + "nullable": true + }, + "os": { + "type": "string", + "nullable": true + }, + "privateIpAddress": { + "type": "string", + "nullable": true + }, + "publicIpAddress": { + "type": "string", + "nullable": true + }, + "riskScore": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.malwareState": { + "title": "malwareState", + "type": "object", + "properties": { + "category": { + "type": "string", + "nullable": true + }, + "family": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "severity": { + "type": "string", + "nullable": true + }, + "wasRunning": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.networkConnection": { + "title": "networkConnection", + "type": "object", + "properties": { + "applicationName": { + "type": "string", + "nullable": true + }, + "destinationAddress": { + "type": "string", + "nullable": true + }, + "destinationDomain": { + "type": "string", + "nullable": true + }, + "destinationPort": { + "type": "string", + "nullable": true + }, + "destinationUrl": { + "type": "string", + "nullable": true + }, + "direction": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.connectionDirection" + } + ], + "nullable": true + }, + "domainRegisteredDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "localDnsName": { + "type": "string", + "nullable": true + }, + "natDestinationAddress": { + "type": "string", + "nullable": true + }, + "natDestinationPort": { + "type": "string", + "nullable": true + }, + "natSourceAddress": { + "type": "string", + "nullable": true + }, + "natSourcePort": { + "type": "string", + "nullable": true + }, + "protocol": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.securityNetworkProtocol" + } + ], + "nullable": true + }, + "riskScore": { + "type": "string", + "nullable": true + }, + "sourceAddress": { + "type": "string", + "nullable": true + }, + "sourcePort": { + "type": "string", + "nullable": true + }, + "status": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.connectionStatus" + } + ], + "nullable": true + }, + "urlParameters": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.process": { + "title": "process", + "type": "object", + "properties": { + "accountName": { + "type": "string", + "nullable": true + }, + "commandLine": { + "type": "string", + "nullable": true + }, + "createdDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "fileHash": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.fileHash" + } + ], + "nullable": true + }, + "integrityLevel": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.processIntegrityLevel" + } + ], + "nullable": true + }, + "isElevated": { + "type": "boolean", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "parentProcessCreatedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "parentProcessId": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "parentProcessName": { + "type": "string", + "nullable": true + }, + "path": { + "type": "string", + "nullable": true + }, + "processId": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + } + } + }, + "microsoft.graph.registryKeyState": { + "title": "registryKeyState", + "type": "object", + "properties": { + "hive": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.registryHive" + } + ], + "nullable": true + }, + "key": { + "type": "string", + "nullable": true + }, + "oldKey": { + "type": "string", + "nullable": true + }, + "oldValueData": { + "type": "string", + "nullable": true + }, + "oldValueName": { + "type": "string", + "nullable": true + }, + "operation": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.registryOperation" + } + ], + "nullable": true + }, + "processId": { + "maximum": 2147483647, + "minimum": -2147483648, + "type": "integer", + "format": "int32", + "nullable": true + }, + "valueData": { + "type": "string", + "nullable": true + }, + "valueName": { + "type": "string", + "nullable": true + }, + "valueType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.registryValueType" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.alertTrigger": { + "title": "alertTrigger", + "type": "object", + "properties": { + "name": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + }, + "value": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.userSecurityState": { + "title": "userSecurityState", + "type": "object", + "properties": { + "aadUserId": { + "type": "string", + "nullable": true + }, + "accountName": { + "type": "string", + "nullable": true + }, + "domainName": { + "type": "string", + "nullable": true + }, + "emailRole": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.emailRole" + } + ], + "nullable": true + }, + "isVpn": { + "type": "boolean", + "nullable": true + }, + "logonDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "logonId": { + "type": "string", + "nullable": true + }, + "logonIp": { + "type": "string", + "nullable": true + }, + "logonLocation": { + "type": "string", + "nullable": true + }, + "logonType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.logonType" + } + ], + "nullable": true + }, + "onPremisesSecurityIdentifier": { + "type": "string", + "nullable": true + }, + "riskScore": { + "type": "string", + "nullable": true + }, + "userAccountType": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.userAccountSecurityType" + } + ], + "nullable": true + }, + "userPrincipalName": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.securityVendorInformation": { + "title": "securityVendorInformation", + "type": "object", + "properties": { + "provider": { + "type": "string" + }, + "providerVersion": { + "type": "string", + "nullable": true + }, + "subProvider": { + "type": "string", + "nullable": true + }, + "vendor": { + "type": "string" + } + } + }, + "microsoft.graph.vulnerabilityState": { + "title": "vulnerabilityState", + "type": "object", + "properties": { + "cve": { + "type": "string", + "nullable": true + }, + "severity": { + "type": "string", + "nullable": true + }, + "wasRunning": { + "type": "boolean", + "nullable": true + } + } + }, + "microsoft.graph.trending": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "trending", + "type": "object", + "properties": { + "weight": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "enum": [ + "-INF", + "INF", + "NaN" + ] + } + ], + "format": "double" + }, + "resourceVisualization": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceVisualization" + } + ], + "nullable": true + }, + "resourceReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceReference" + } + ], + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "resource": { + "anyOf": [ + { + "$ref": "#/components/schemas/Entity" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.sharedInsight": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "sharedInsight", + "type": "object", + "properties": { + "lastShared": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharingDetail" + } + ], + "nullable": true + }, + "sharingHistory": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.sharingDetail" + } + ], + "nullable": true + } + }, + "resourceVisualization": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceVisualization" + } + ], + "nullable": true + }, + "resourceReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceReference" + } + ], + "nullable": true + }, + "lastSharedMethod": { + "anyOf": [ + { + "$ref": "#/components/schemas/Entity" + } + ], + "nullable": true + }, + "resource": { + "anyOf": [ + { + "$ref": "#/components/schemas/Entity" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.usedInsight": { + "allOf": [ + { + "$ref": "#/components/schemas/Entity" + }, + { + "title": "usedInsight", + "type": "object", + "properties": { + "lastUsed": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.usageDetails" + } + ], + "nullable": true + }, + "resourceVisualization": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceVisualization" + } + ], + "nullable": true + }, + "resourceReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceReference" + } + ], + "nullable": true + }, + "resource": { + "anyOf": [ + { + "$ref": "#/components/schemas/Entity" + } + ], + "nullable": true + } + } + } + ] + }, + "microsoft.graph.resourceVisualization": { + "title": "resourceVisualization", + "type": "object", + "properties": { + "title": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + }, + "mediaType": { + "type": "string", + "nullable": true + }, + "previewImageUrl": { + "type": "string", + "nullable": true + }, + "previewText": { + "type": "string", + "nullable": true + }, + "containerWebUrl": { + "type": "string", + "nullable": true + }, + "containerDisplayName": { + "type": "string", + "nullable": true + }, + "containerType": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.resourceReference": { + "title": "resourceReference", + "type": "object", + "properties": { + "webUrl": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.sharingDetail": { + "title": "sharingDetail", + "type": "object", + "properties": { + "sharedBy": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.insightIdentity" + } + ], + "nullable": true + }, + "sharedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "sharingSubject": { + "type": "string", + "nullable": true + }, + "sharingType": { + "type": "string", + "nullable": true + }, + "sharingReference": { + "anyOf": [ + { + "$ref": "#/components/schemas/microsoft.graph.resourceReference" + } + ], + "nullable": true + } + } + }, + "microsoft.graph.insightIdentity": { + "title": "insightIdentity", + "type": "object", + "properties": { + "displayName": { + "type": "string", + "nullable": true + }, + "id": { + "type": "string", + "nullable": true + }, + "address": { + "type": "string", + "nullable": true + } + } + }, + "microsoft.graph.usageDetails": { + "title": "usageDetails", + "type": "object", + "properties": { + "lastAccessedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + }, + "lastModifiedDateTime": { + "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", + "type": "string", + "format": "date-time", + "nullable": true + } + } + }, + "microsoft.graph.dayOfWeek": { + "title": "dayOfWeek", + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + }, + "microsoft.graph.automaticRepliesStatus": { + "title": "automaticRepliesStatus", + "enum": [ + "disabled", + "alwaysEnabled", + "scheduled" + ], + "type": "string" + }, + "microsoft.graph.externalAudienceScope": { + "title": "externalAudienceScope", + "enum": [ + "none", + "contactsOnly", + "all" + ], + "type": "string" + }, + "microsoft.graph.attendeeType": { + "title": "attendeeType", + "enum": [ + "required", + "optional", + "resource" + ], + "type": "string" + }, + "microsoft.graph.freeBusyStatus": { + "title": "freeBusyStatus", + "enum": [ + "free", + "tentative", + "busy", + "oof", + "workingElsewhere", + "unknown" + ], + "type": "string" + }, + "microsoft.graph.locationType": { + "title": "locationType", + "enum": [ + "default", + "conferenceRoom", + "homeAddress", + "businessAddress", + "geoCoordinates", + "streetAddress", + "hotel", + "restaurant", + "localBusiness", + "postalAddress" + ], + "type": "string" + }, + "microsoft.graph.locationUniqueIdType": { + "title": "locationUniqueIdType", + "enum": [ + "unknown", + "locationStore", + "directory", + "private", + "bing" + ], + "type": "string" + }, + "microsoft.graph.activityDomain": { + "title": "activityDomain", + "enum": [ + "unknown", + "work", + "personal", + "unrestricted" + ], + "type": "string" + }, + "microsoft.graph.mailTipsType": { + "title": "mailTipsType", + "enum": [ + "automaticReplies", + "mailboxFullStatus", + "customMailTip", + "externalMemberCount", + "totalMemberCount", + "maxMessageSize", + "deliveryRestriction", + "moderationStatus", + "recipientScope", + "recipientSuggestions" + ], + "type": "string" + }, + "microsoft.graph.recipientScopeType": { + "title": "recipientScopeType", + "enum": [ + "none", + "internal", + "external", + "externalPartner", + "externalNonPartner" + ], + "type": "string" + }, + "microsoft.graph.timeZoneStandard": { + "title": "timeZoneStandard", + "enum": [ + "windows", + "iana" + ], + "type": "string" + }, + "microsoft.graph.bodyType": { + "title": "bodyType", + "enum": [ + "text", + "html" + ], + "type": "string" + }, + "microsoft.graph.importance": { + "title": "importance", + "enum": [ + "low", + "normal", + "high" + ], + "type": "string" + }, + "microsoft.graph.inferenceClassificationType": { + "title": "inferenceClassificationType", + "enum": [ + "focused", + "other" + ], + "type": "string" + }, + "microsoft.graph.followupFlagStatus": { + "title": "followupFlagStatus", + "enum": [ + "notFlagged", + "complete", + "flagged" + ], + "type": "string" + }, + "microsoft.graph.calendarColor": { + "title": "calendarColor", + "enum": [ + "lightBlue", + "lightGreen", + "lightOrange", + "lightGray", + "lightYellow", + "lightTeal", + "lightPink", + "lightBrown", + "lightRed", + "maxColor", + "auto" + ], + "type": "string" + }, + "microsoft.graph.responseType": { + "title": "responseType", + "enum": [ + "none", + "organizer", + "tentativelyAccepted", + "accepted", + "declined", + "notResponded" + ], + "type": "string" + }, + "microsoft.graph.sensitivity": { + "title": "sensitivity", + "enum": [ + "normal", + "personal", + "private", + "confidential" + ], + "type": "string" + }, + "microsoft.graph.recurrencePatternType": { + "title": "recurrencePatternType", + "enum": [ + "daily", + "weekly", + "absoluteMonthly", + "relativeMonthly", + "absoluteYearly", + "relativeYearly" + ], + "type": "string" + }, + "microsoft.graph.weekIndex": { + "title": "weekIndex", + "enum": [ + "first", + "second", + "third", + "fourth", + "last" + ], + "type": "string" + }, + "microsoft.graph.recurrenceRangeType": { + "title": "recurrenceRangeType", + "enum": [ + "endDate", + "noEnd", + "numbered" + ], + "type": "string" + }, + "microsoft.graph.eventType": { + "title": "eventType", + "enum": [ + "singleInstance", + "occurrence", + "exception", + "seriesMaster" + ], + "type": "string" + }, + "microsoft.graph.meetingMessageType": { + "title": "meetingMessageType", + "enum": [ + "none", + "meetingRequest", + "meetingCancelled", + "meetingAccepted", + "meetingTenativelyAccepted", + "meetingDeclined" + ], + "type": "string" + }, + "microsoft.graph.messageActionFlag": { + "title": "messageActionFlag", + "enum": [ + "any", + "call", + "doNotForward", + "followUp", + "fyi", + "forward", + "noResponseNecessary", + "read", + "reply", + "replyToAll", + "review" + ], + "type": "string" + }, + "microsoft.graph.categoryColor": { + "title": "categoryColor", + "enum": [ + "preset0", + "preset1", + "preset2", + "preset3", + "preset4", + "preset5", + "preset6", + "preset7", + "preset8", + "preset9", + "preset10", + "preset11", + "preset12", + "preset13", + "preset14", + "preset15", + "preset16", + "preset17", + "preset18", + "preset19", + "preset20", + "preset21", + "preset22", + "preset23", + "preset24", + "none" + ], + "type": "string" + }, + "microsoft.graph.selectionLikelihoodInfo": { + "title": "selectionLikelihoodInfo", + "enum": [ + "notSpecified", + "high" + ], + "type": "string" + }, + "microsoft.graph.phoneType": { + "title": "phoneType", + "enum": [ + "home", + "business", + "mobile", + "other", + "assistant", + "homeFax", + "businessFax", + "otherFax", + "pager", + "radio" + ], + "type": "string" + }, + "microsoft.graph.websiteType": { + "title": "websiteType", + "enum": [ + "other", + "home", + "work", + "blog", + "profile" + ], + "type": "string" + }, + "microsoft.graph.plannerPreviewType": { + "title": "plannerPreviewType", + "enum": [ + "automatic", + "noPreview", + "checklist", + "description", + "reference" + ], + "type": "string" + }, + "microsoft.graph.operationStatus": { + "title": "operationStatus", + "enum": [ + "NotStarted", + "Running", + "Completed", + "Failed" + ], + "type": "string" + }, + "microsoft.graph.onenotePatchInsertPosition": { + "title": "onenotePatchInsertPosition", + "enum": [ + "After", + "Before" + ], + "type": "string" + }, + "microsoft.graph.onenotePatchActionType": { + "title": "onenotePatchActionType", + "enum": [ + "Replace", + "Append", + "Delete", + "Insert", + "Prepend" + ], + "type": "string" + }, + "microsoft.graph.onenoteSourceService": { + "title": "onenoteSourceService", + "enum": [ + "Unknown", + "OneDrive", + "OneDriveForBusiness", + "OnPremOneDriveForBusiness" + ], + "type": "string" + }, + "microsoft.graph.onenoteUserRole": { + "title": "onenoteUserRole", + "enum": [ + "Owner", + "Contributor", + "Reader", + "None" + ], + "type": "string" + }, + "microsoft.graph.educationUserRole": { + "title": "educationUserRole", + "enum": [ + "student", + "teacher", + "none", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.educationExternalSource": { + "title": "educationExternalSource", + "enum": [ + "sis", + "manual", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.educationGender": { + "title": "educationGender", + "enum": [ + "female", + "male", + "other", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.educationContactRelationship": { + "title": "educationContactRelationship", + "enum": [ + "parent", + "relative", + "aide", + "doctor", + "guardian", + "child", + "other", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.installIntent": { + "title": "installIntent", + "enum": [ + "available", + "required", + "uninstall", + "availableWithoutEnrollment" + ], + "type": "string" + }, + "microsoft.graph.mobileAppPublishingState": { + "title": "mobileAppPublishingState", + "enum": [ + "notPublished", + "processing", + "published" + ], + "type": "string" + }, + "microsoft.graph.windowsArchitecture": { + "title": "windowsArchitecture", + "enum": [ + "none", + "x86", + "x64", + "arm", + "neutral" + ], + "type": "string" + }, + "microsoft.graph.managedAppAvailability": { + "title": "managedAppAvailability", + "enum": [ + "global", + "lineOfBusiness" + ], + "type": "string" + }, + "microsoft.graph.mobileAppContentFileUploadState": { + "title": "mobileAppContentFileUploadState", + "enum": [ + "success", + "transientError", + "error", + "unknown", + "azureStorageUriRequestSuccess", + "azureStorageUriRequestPending", + "azureStorageUriRequestFailed", + "azureStorageUriRequestTimedOut", + "azureStorageUriRenewalSuccess", + "azureStorageUriRenewalPending", + "azureStorageUriRenewalFailed", + "azureStorageUriRenewalTimedOut", + "commitFileSuccess", + "commitFilePending", + "commitFileFailed", + "commitFileTimedOut" + ], + "type": "string" + }, + "microsoft.graph.windowsDeviceType": { + "title": "windowsDeviceType", + "enum": [ + "none", + "desktop", + "mobile", + "holographic", + "team" + ], + "type": "string" + }, + "microsoft.graph.microsoftStoreForBusinessLicenseType": { + "title": "microsoftStoreForBusinessLicenseType", + "enum": [ + "offline", + "online" + ], + "type": "string" + }, + "microsoft.graph.vppTokenAccountType": { + "title": "vppTokenAccountType", + "enum": [ + "business", + "education" + ], + "type": "string" + }, + "microsoft.graph.complianceStatus": { + "title": "complianceStatus", + "enum": [ + "unknown", + "notApplicable", + "compliant", + "remediated", + "nonCompliant", + "error", + "conflict", + "notAssigned" + ], + "type": "string" + }, + "microsoft.graph.mdmAppConfigKeyType": { + "title": "mdmAppConfigKeyType", + "enum": [ + "stringType", + "integerType", + "realType", + "booleanType", + "tokenType" + ], + "type": "string" + }, + "microsoft.graph.actionState": { + "title": "actionState", + "enum": [ + "none", + "pending", + "canceled", + "active", + "done", + "failed", + "notSupported" + ], + "type": "string" + }, + "microsoft.graph.managedDeviceOwnerType": { + "title": "managedDeviceOwnerType", + "enum": [ + "unknown", + "company", + "personal" + ], + "type": "string" + }, + "microsoft.graph.complianceState": { + "title": "complianceState", + "enum": [ + "unknown", + "compliant", + "noncompliant", + "conflict", + "error", + "inGracePeriod", + "configManager" + ], + "type": "string" + }, + "microsoft.graph.managementAgentType": { + "title": "managementAgentType", + "enum": [ + "eas", + "mdm", + "easMdm", + "intuneClient", + "easIntuneClient", + "configurationManagerClient", + "configurationManagerClientMdm", + "configurationManagerClientMdmEas", + "unknown", + "jamf", + "googleCloudDevicePolicyController" + ], + "type": "string" + }, + "microsoft.graph.deviceEnrollmentType": { + "title": "deviceEnrollmentType", + "enum": [ + "unknown", + "userEnrollment", + "deviceEnrollmentManager", + "appleBulkWithUser", + "appleBulkWithoutUser", + "windowsAzureADJoin", + "windowsBulkUserless", + "windowsAutoEnrollment", + "windowsBulkAzureDomainJoin", + "windowsCoManagement" + ], + "type": "string" + }, + "microsoft.graph.deviceRegistrationState": { + "title": "deviceRegistrationState", + "enum": [ + "notRegistered", + "registered", + "revoked", + "keyConflict", + "approvalPending", + "certificateReset", + "notRegisteredPendingEnrollment", + "unknown" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementExchangeAccessState": { + "title": "deviceManagementExchangeAccessState", + "enum": [ + "none", + "unknown", + "allowed", + "blocked", + "quarantined" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementExchangeAccessStateReason": { + "title": "deviceManagementExchangeAccessStateReason", + "enum": [ + "none", + "unknown", + "exchangeGlobalRule", + "exchangeIndividualRule", + "exchangeDeviceRule", + "exchangeUpgrade", + "exchangeMailboxPolicy", + "other", + "compliant", + "notCompliant", + "notEnrolled", + "unknownLocation", + "mfaRequired", + "azureADBlockDueToAccessPolicy", + "compromisedPassword", + "deviceNotKnownWithManagedApp" + ], + "type": "string" + }, + "microsoft.graph.managedDevicePartnerReportedHealthState": { + "title": "managedDevicePartnerReportedHealthState", + "enum": [ + "unknown", + "activated", + "deactivated", + "secured", + "lowSeverity", + "mediumSeverity", + "highSeverity", + "unresponsive", + "compromised", + "misconfigured" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementSubscriptionState": { + "title": "deviceManagementSubscriptionState", + "enum": [ + "pending", + "active", + "warning", + "disabled", + "deleted", + "blocked", + "lockedOut" + ], + "type": "string" + }, + "microsoft.graph.appListType": { + "title": "appListType", + "enum": [ + "none", + "appsInListCompliant", + "appsNotInListCompliant" + ], + "type": "string" + }, + "microsoft.graph.androidRequiredPasswordType": { + "title": "androidRequiredPasswordType", + "enum": [ + "deviceDefault", + "alphabetic", + "alphanumeric", + "alphanumericWithSymbols", + "lowSecurityBiometric", + "numeric", + "numericComplex", + "any" + ], + "type": "string" + }, + "microsoft.graph.webBrowserCookieSettings": { + "title": "webBrowserCookieSettings", + "enum": [ + "browserDefault", + "blockAlways", + "allowCurrentWebSite", + "allowFromWebsitesVisited", + "allowAlways" + ], + "type": "string" + }, + "microsoft.graph.androidWorkProfileRequiredPasswordType": { + "title": "androidWorkProfileRequiredPasswordType", + "enum": [ + "deviceDefault", + "lowSecurityBiometric", + "required", + "atLeastNumeric", + "numericComplex", + "atLeastAlphabetic", + "atLeastAlphanumeric", + "alphanumericWithSymbols" + ], + "type": "string" + }, + "microsoft.graph.androidWorkProfileCrossProfileDataSharingType": { + "title": "androidWorkProfileCrossProfileDataSharingType", + "enum": [ + "deviceDefault", + "preventAny", + "allowPersonalToWork", + "noRestrictions" + ], + "type": "string" + }, + "microsoft.graph.androidWorkProfileDefaultAppPermissionPolicyType": { + "title": "androidWorkProfileDefaultAppPermissionPolicyType", + "enum": [ + "deviceDefault", + "prompt", + "autoGrant", + "autoDeny" + ], + "type": "string" + }, + "microsoft.graph.ratingAustraliaMoviesType": { + "title": "ratingAustraliaMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "mature", + "agesAbove15", + "agesAbove18" + ], + "type": "string" + }, + "microsoft.graph.ratingAustraliaTelevisionType": { + "title": "ratingAustraliaTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "preschoolers", + "children", + "general", + "parentalGuidance", + "mature", + "agesAbove15", + "agesAbove15AdultViolence" + ], + "type": "string" + }, + "microsoft.graph.ratingCanadaMoviesType": { + "title": "ratingCanadaMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "agesAbove14", + "agesAbove18", + "restricted" + ], + "type": "string" + }, + "microsoft.graph.ratingCanadaTelevisionType": { + "title": "ratingCanadaTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "children", + "childrenAbove8", + "general", + "parentalGuidance", + "agesAbove14", + "agesAbove18" + ], + "type": "string" + }, + "microsoft.graph.ratingFranceMoviesType": { + "title": "ratingFranceMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "agesAbove10", + "agesAbove12", + "agesAbove16", + "agesAbove18" + ], + "type": "string" + }, + "microsoft.graph.ratingFranceTelevisionType": { + "title": "ratingFranceTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "agesAbove10", + "agesAbove12", + "agesAbove16", + "agesAbove18" + ], + "type": "string" + }, + "microsoft.graph.ratingGermanyMoviesType": { + "title": "ratingGermanyMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "agesAbove6", + "agesAbove12", + "agesAbove16", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingGermanyTelevisionType": { + "title": "ratingGermanyTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "agesAbove6", + "agesAbove12", + "agesAbove16", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingIrelandMoviesType": { + "title": "ratingIrelandMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "agesAbove12", + "agesAbove15", + "agesAbove16", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingIrelandTelevisionType": { + "title": "ratingIrelandTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "children", + "youngAdults", + "parentalSupervision", + "mature" + ], + "type": "string" + }, + "microsoft.graph.ratingJapanMoviesType": { + "title": "ratingJapanMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "agesAbove15", + "agesAbove18" + ], + "type": "string" + }, + "microsoft.graph.ratingJapanTelevisionType": { + "title": "ratingJapanTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "explicitAllowed" + ], + "type": "string" + }, + "microsoft.graph.ratingNewZealandMoviesType": { + "title": "ratingNewZealandMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "mature", + "agesAbove13", + "agesAbove15", + "agesAbove16", + "agesAbove18", + "restricted", + "agesAbove16Restricted" + ], + "type": "string" + }, + "microsoft.graph.ratingNewZealandTelevisionType": { + "title": "ratingNewZealandTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingUnitedKingdomMoviesType": { + "title": "ratingUnitedKingdomMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "universalChildren", + "parentalGuidance", + "agesAbove12Video", + "agesAbove12Cinema", + "agesAbove15", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingUnitedKingdomTelevisionType": { + "title": "ratingUnitedKingdomTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "caution" + ], + "type": "string" + }, + "microsoft.graph.ratingUnitedStatesMoviesType": { + "title": "ratingUnitedStatesMoviesType", + "enum": [ + "allAllowed", + "allBlocked", + "general", + "parentalGuidance", + "parentalGuidance13", + "restricted", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingUnitedStatesTelevisionType": { + "title": "ratingUnitedStatesTelevisionType", + "enum": [ + "allAllowed", + "allBlocked", + "childrenAll", + "childrenAbove7", + "general", + "parentalGuidance", + "childrenAbove14", + "adults" + ], + "type": "string" + }, + "microsoft.graph.ratingAppsType": { + "title": "ratingAppsType", + "enum": [ + "allAllowed", + "allBlocked", + "agesAbove4", + "agesAbove9", + "agesAbove12", + "agesAbove17" + ], + "type": "string" + }, + "microsoft.graph.requiredPasswordType": { + "title": "requiredPasswordType", + "enum": [ + "deviceDefault", + "alphanumeric", + "numeric" + ], + "type": "string" + }, + "microsoft.graph.iosNotificationAlertType": { + "title": "iosNotificationAlertType", + "enum": [ + "deviceDefault", + "banner", + "modal", + "none" + ], + "type": "string" + }, + "microsoft.graph.editionUpgradeLicenseType": { + "title": "editionUpgradeLicenseType", + "enum": [ + "productKey", + "licenseFile" + ], + "type": "string" + }, + "microsoft.graph.windows10EditionType": { + "title": "windows10EditionType", + "enum": [ + "windows10Enterprise", + "windows10EnterpriseN", + "windows10Education", + "windows10EducationN", + "windows10MobileEnterprise", + "windows10HolographicEnterprise", + "windows10Professional", + "windows10ProfessionalN", + "windows10ProfessionalEducation", + "windows10ProfessionalEducationN", + "windows10ProfessionalWorkstation", + "windows10ProfessionalWorkstationN" + ], + "type": "string" + }, + "microsoft.graph.stateManagementSetting": { + "title": "stateManagementSetting", + "enum": [ + "notConfigured", + "blocked", + "allowed" + ], + "type": "string" + }, + "microsoft.graph.firewallPreSharedKeyEncodingMethodType": { + "title": "firewallPreSharedKeyEncodingMethodType", + "enum": [ + "deviceDefault", + "none", + "utF8" + ], + "type": "string" + }, + "microsoft.graph.firewallCertificateRevocationListCheckMethodType": { + "title": "firewallCertificateRevocationListCheckMethodType", + "enum": [ + "deviceDefault", + "none", + "attempt", + "require" + ], + "type": "string" + }, + "microsoft.graph.firewallPacketQueueingMethodType": { + "title": "firewallPacketQueueingMethodType", + "enum": [ + "deviceDefault", + "disabled", + "queueInbound", + "queueOutbound", + "queueBoth" + ], + "type": "string" + }, + "microsoft.graph.appLockerApplicationControlType": { + "title": "appLockerApplicationControlType", + "enum": [ + "notConfigured", + "enforceComponentsAndStoreApps", + "auditComponentsAndStoreApps", + "enforceComponentsStoreAppsAndSmartlocker", + "auditComponentsStoreAppsAndSmartlocker" + ], + "type": "string" + }, + "microsoft.graph.applicationGuardBlockFileTransferType": { + "title": "applicationGuardBlockFileTransferType", + "enum": [ + "notConfigured", + "blockImageAndTextFile", + "blockImageFile", + "blockNone", + "blockTextFile" + ], + "type": "string" + }, + "microsoft.graph.applicationGuardBlockClipboardSharingType": { + "title": "applicationGuardBlockClipboardSharingType", + "enum": [ + "notConfigured", + "blockBoth", + "blockHostToContainer", + "blockContainerToHost", + "blockNone" + ], + "type": "string" + }, + "microsoft.graph.bitLockerEncryptionMethod": { + "title": "bitLockerEncryptionMethod", + "enum": [ + "aesCbc128", + "aesCbc256", + "xtsAes128", + "xtsAes256" + ], + "type": "string" + }, + "microsoft.graph.diagnosticDataSubmissionMode": { + "title": "diagnosticDataSubmissionMode", + "enum": [ + "userDefined", + "none", + "basic", + "enhanced", + "full" + ], + "type": "string" + }, + "microsoft.graph.edgeCookiePolicy": { + "title": "edgeCookiePolicy", + "enum": [ + "userDefined", + "allow", + "blockThirdParty", + "blockAll" + ], + "type": "string" + }, + "microsoft.graph.visibilitySetting": { + "title": "visibilitySetting", + "enum": [ + "notConfigured", + "hide", + "show" + ], + "type": "string" + }, + "microsoft.graph.defenderThreatAction": { + "title": "defenderThreatAction", + "enum": [ + "deviceDefault", + "clean", + "quarantine", + "remove", + "allow", + "userDefined", + "block" + ], + "type": "string" + }, + "microsoft.graph.weeklySchedule": { + "title": "weeklySchedule", + "enum": [ + "userDefined", + "everyday", + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + }, + "microsoft.graph.defenderMonitorFileActivity": { + "title": "defenderMonitorFileActivity", + "enum": [ + "userDefined", + "disable", + "monitorAllFiles", + "monitorIncomingFilesOnly", + "monitorOutgoingFilesOnly" + ], + "type": "string" + }, + "microsoft.graph.defenderPromptForSampleSubmission": { + "title": "defenderPromptForSampleSubmission", + "enum": [ + "userDefined", + "alwaysPrompt", + "promptBeforeSendingPersonalData", + "neverSendData", + "sendAllDataWithoutPrompting" + ], + "type": "string" + }, + "microsoft.graph.defenderScanType": { + "title": "defenderScanType", + "enum": [ + "userDefined", + "disabled", + "quick", + "full" + ], + "type": "string" + }, + "microsoft.graph.defenderCloudBlockLevelType": { + "title": "defenderCloudBlockLevelType", + "enum": [ + "notConfigured", + "high", + "highPlus", + "zeroTolerance" + ], + "type": "string" + }, + "microsoft.graph.windowsStartMenuAppListVisibilityType": { + "title": "windowsStartMenuAppListVisibilityType", + "enum": [ + "userDefined", + "collapse", + "remove", + "disableSettingsApp" + ], + "type": "string" + }, + "microsoft.graph.windowsStartMenuModeType": { + "title": "windowsStartMenuModeType", + "enum": [ + "userDefined", + "fullScreen", + "nonFullScreen" + ], + "type": "string" + }, + "microsoft.graph.windowsSpotlightEnablementSettings": { + "title": "windowsSpotlightEnablementSettings", + "enum": [ + "notConfigured", + "disabled", + "enabled" + ], + "type": "string" + }, + "microsoft.graph.automaticUpdateMode": { + "title": "automaticUpdateMode", + "enum": [ + "userDefined", + "notifyDownload", + "autoInstallAtMaintenanceTime", + "autoInstallAndRebootAtMaintenanceTime", + "autoInstallAndRebootAtScheduledTime", + "autoInstallAndRebootWithoutEndUserControl" + ], + "type": "string" + }, + "microsoft.graph.safeSearchFilterType": { + "title": "safeSearchFilterType", + "enum": [ + "userDefined", + "strict", + "moderate" + ], + "type": "string" + }, + "microsoft.graph.edgeSearchEngineType": { + "title": "edgeSearchEngineType", + "enum": [ + "default", + "bing" + ], + "type": "string" + }, + "microsoft.graph.prereleaseFeatures": { + "title": "prereleaseFeatures", + "enum": [ + "userDefined", + "settingsOnly", + "settingsAndExperimentations", + "notAllowed" + ], + "type": "string" + }, + "microsoft.graph.sharedPCAccountDeletionPolicyType": { + "title": "sharedPCAccountDeletionPolicyType", + "enum": [ + "immediate", + "diskSpaceThreshold", + "diskSpaceThresholdOrInactiveThreshold" + ], + "type": "string" + }, + "microsoft.graph.sharedPCAllowedAccountType": { + "title": "sharedPCAllowedAccountType", + "enum": [ + "guest", + "domain" + ], + "type": "string" + }, + "microsoft.graph.windowsDeliveryOptimizationMode": { + "title": "windowsDeliveryOptimizationMode", + "enum": [ + "userDefined", + "httpOnly", + "httpWithPeeringNat", + "httpWithPeeringPrivateGroup", + "httpWithInternetPeering", + "simpleDownload", + "bypassMode" + ], + "type": "string" + }, + "microsoft.graph.windowsUpdateType": { + "title": "windowsUpdateType", + "enum": [ + "userDefined", + "all", + "businessReadyOnly", + "windowsInsiderBuildFast", + "windowsInsiderBuildSlow", + "windowsInsiderBuildRelease" + ], + "type": "string" + }, + "microsoft.graph.internetSiteSecurityLevel": { + "title": "internetSiteSecurityLevel", + "enum": [ + "userDefined", + "medium", + "mediumHigh", + "high" + ], + "type": "string" + }, + "microsoft.graph.siteSecurityLevel": { + "title": "siteSecurityLevel", + "enum": [ + "userDefined", + "low", + "mediumLow", + "medium", + "mediumHigh", + "high" + ], + "type": "string" + }, + "microsoft.graph.windowsUserAccountControlSettings": { + "title": "windowsUserAccountControlSettings", + "enum": [ + "userDefined", + "alwaysNotify", + "notifyOnAppChanges", + "notifyOnAppChangesWithoutDimming", + "neverNotify" + ], + "type": "string" + }, + "microsoft.graph.miracastChannel": { + "title": "miracastChannel", + "enum": [ + "userDefined", + "one", + "two", + "three", + "four", + "five", + "six", + "seven", + "eight", + "nine", + "ten", + "eleven", + "thirtySix", + "forty", + "fortyFour", + "fortyEight", + "oneHundredFortyNine", + "oneHundredFiftyThree", + "oneHundredFiftySeven", + "oneHundredSixtyOne", + "oneHundredSixtyFive" + ], + "type": "string" + }, + "microsoft.graph.welcomeScreenMeetingInformation": { + "title": "welcomeScreenMeetingInformation", + "enum": [ + "userDefined", + "showOrganizerAndTimeOnly", + "showOrganizerAndTimeAndSubject" + ], + "type": "string" + }, + "microsoft.graph.deviceComplianceActionType": { + "title": "deviceComplianceActionType", + "enum": [ + "noAction", + "notification", + "block", + "retire", + "wipe", + "removeResourceAccessProfiles", + "pushNotification" + ], + "type": "string" + }, + "microsoft.graph.deviceThreatProtectionLevel": { + "title": "deviceThreatProtectionLevel", + "enum": [ + "unavailable", + "secured", + "low", + "medium", + "high", + "notSet" + ], + "type": "string" + }, + "microsoft.graph.policyPlatformType": { + "title": "policyPlatformType", + "enum": [ + "android", + "iOS", + "macOS", + "windowsPhone81", + "windows81AndLater", + "windows10AndLater", + "androidWorkProfile", + "all" + ], + "type": "string" + }, + "microsoft.graph.iosUpdatesInstallStatus": { + "title": "iosUpdatesInstallStatus", + "enum": [ + "success", + "available", + "idle", + "unknown", + "downloading", + "downloadFailed", + "downloadRequiresComputer", + "downloadInsufficientSpace", + "downloadInsufficientPower", + "downloadInsufficientNetwork", + "installing", + "installInsufficientSpace", + "installInsufficientPower", + "installPhoneCallInProgress", + "installFailed", + "notSupportedOperation", + "sharedDeviceUserLoggedInError" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementExchangeConnectorSyncType": { + "title": "deviceManagementExchangeConnectorSyncType", + "enum": [ + "fullSync", + "deltaSync" + ], + "type": "string" + }, + "microsoft.graph.mdmAuthority": { + "title": "mdmAuthority", + "enum": [ + "unknown", + "intune", + "sccm", + "office365" + ], + "type": "string" + }, + "microsoft.graph.windowsHelloForBusinessPinUsage": { + "title": "windowsHelloForBusinessPinUsage", + "enum": [ + "allowed", + "required", + "disallowed" + ], + "type": "string" + }, + "microsoft.graph.enablement": { + "title": "enablement", + "enum": [ + "notConfigured", + "enabled", + "disabled" + ], + "type": "string" + }, + "microsoft.graph.vppTokenState": { + "title": "vppTokenState", + "enum": [ + "unknown", + "valid", + "expired", + "invalid", + "assignedToExternalMDM" + ], + "type": "string" + }, + "microsoft.graph.vppTokenSyncStatus": { + "title": "vppTokenSyncStatus", + "enum": [ + "none", + "inProgress", + "completed", + "failed" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementExchangeConnectorStatus": { + "title": "deviceManagementExchangeConnectorStatus", + "enum": [ + "none", + "connectionPending", + "connected", + "disconnected" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementExchangeConnectorType": { + "title": "deviceManagementExchangeConnectorType", + "enum": [ + "onPremises", + "hosted", + "serviceToService", + "dedicated" + ], + "type": "string" + }, + "microsoft.graph.mobileThreatPartnerTenantState": { + "title": "mobileThreatPartnerTenantState", + "enum": [ + "unavailable", + "available", + "enabled", + "unresponsive" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementPartnerTenantState": { + "title": "deviceManagementPartnerTenantState", + "enum": [ + "unknown", + "unavailable", + "enabled", + "terminated", + "rejected", + "unresponsive" + ], + "type": "string" + }, + "microsoft.graph.deviceManagementPartnerAppType": { + "title": "deviceManagementPartnerAppType", + "enum": [ + "unknown", + "singleTenantApp", + "multiTenantApp" + ], + "type": "string" + }, + "microsoft.graph.managedAppDataTransferLevel": { + "title": "managedAppDataTransferLevel", + "enum": [ + "allApps", + "managedApps", + "none" + ], + "type": "string" + }, + "microsoft.graph.managedAppClipboardSharingLevel": { + "title": "managedAppClipboardSharingLevel", + "enum": [ + "allApps", + "managedAppsWithPasteIn", + "managedApps", + "blocked" + ], + "type": "string" + }, + "microsoft.graph.managedAppPinCharacterSet": { + "title": "managedAppPinCharacterSet", + "enum": [ + "numeric", + "alphanumericAndSymbol" + ], + "type": "string" + }, + "microsoft.graph.managedAppDataStorageLocation": { + "title": "managedAppDataStorageLocation", + "enum": [ + "oneDriveForBusiness", + "sharePoint", + "localStorage" + ], + "type": "string" + }, + "microsoft.graph.managedAppDataEncryptionType": { + "title": "managedAppDataEncryptionType", + "enum": [ + "useDeviceSettings", + "afterDeviceRestart", + "whenDeviceLockedExceptOpenFiles", + "whenDeviceLocked" + ], + "type": "string" + }, + "microsoft.graph.windowsInformationProtectionEnforcementLevel": { + "title": "windowsInformationProtectionEnforcementLevel", + "enum": [ + "noProtection", + "encryptAndAuditOnly", + "encryptAuditAndPrompt", + "encryptAuditAndBlock" + ], + "type": "string" + }, + "microsoft.graph.windowsInformationProtectionPinCharacterRequirements": { + "title": "windowsInformationProtectionPinCharacterRequirements", + "enum": [ + "notAllow", + "requireAtLeastOne", + "allow" + ], + "type": "string" + }, + "microsoft.graph.managedAppFlaggedReason": { + "title": "managedAppFlaggedReason", + "enum": [ + "none", + "rootedDevice" + ], + "type": "string" + }, + "microsoft.graph.notificationTemplateBrandingOptions": { + "title": "notificationTemplateBrandingOptions", + "enum": [ + "none", + "includeCompanyLogo", + "includeCompanyName", + "includeContactInformation" + ], + "type": "string" + }, + "microsoft.graph.installState": { + "title": "installState", + "enum": [ + "notApplicable", + "installed", + "failed", + "notInstalled", + "uninstallFailed", + "unknown" + ], + "type": "string" + }, + "microsoft.graph.remoteAssistanceOnboardingStatus": { + "title": "remoteAssistanceOnboardingStatus", + "enum": [ + "notOnboarded", + "onboarding", + "onboarded" + ], + "type": "string" + }, + "microsoft.graph.applicationType": { + "title": "applicationType", + "enum": [ + "universal", + "desktop" + ], + "type": "string" + }, + "microsoft.graph.deviceEnrollmentFailureReason": { + "title": "deviceEnrollmentFailureReason", + "enum": [ + "unknown", + "authentication", + "authorization", + "accountValidation", + "userValidation", + "deviceNotSupported", + "inMaintenance", + "badRequest", + "featureNotSupported", + "enrollmentRestrictionsEnforced", + "clientDisconnected", + "userAbandonment" + ], + "type": "string" + }, + "microsoft.graph.status": { + "title": "status", + "enum": [ + "active", + "updated", + "deleted", + "ignored", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.alertFeedback": { + "title": "alertFeedback", + "enum": [ + "unknown", + "truePositive", + "falsePositive", + "benignPositive", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.alertSeverity": { + "title": "alertSeverity", + "enum": [ + "unknown", + "informational", + "low", + "medium", + "high", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.alertStatus": { + "title": "alertStatus", + "enum": [ + "unknown", + "newAlert", + "inProgress", + "resolved", + "dismissed", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.connectionDirection": { + "title": "connectionDirection", + "enum": [ + "unknown", + "inbound", + "outbound", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.connectionStatus": { + "title": "connectionStatus", + "enum": [ + "unknown", + "attempted", + "succeeded", + "blocked", + "failed", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.emailRole": { + "title": "emailRole", + "enum": [ + "unknown", + "sender", + "recipient", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.fileHashType": { + "title": "fileHashType", + "enum": [ + "unknown", + "sha1", + "sha256", + "md5", + "authenticodeHash256", + "lsHash", + "ctph", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.logonType": { + "title": "logonType", + "enum": [ + "unknown", + "interactive", + "remoteInteractive", + "network", + "batch", + "service", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.processIntegrityLevel": { + "title": "processIntegrityLevel", + "enum": [ + "unknown", + "untrusted", + "low", + "medium", + "high", + "system", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.registryHive": { + "title": "registryHive", + "enum": [ + "unknown", + "currentConfig", + "currentUser", + "localMachineSam", + "localMachineSecurity", + "localMachineSoftware", + "localMachineSystem", + "usersDefault", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.registryOperation": { + "title": "registryOperation", + "enum": [ + "unknown", + "create", + "modify", + "delete", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.registryValueType": { + "title": "registryValueType", + "enum": [ + "unknown", + "binary", + "dword", + "dwordLittleEndian", + "dwordBigEndian", + "expandSz", + "link", + "multiSz", + "none", + "qword", + "qwordlittleEndian", + "sz", + "unknownFutureValue" + ], + "type": "string" + }, + "microsoft.graph.securityNetworkProtocol": { + "title": "securityNetworkProtocol", + "enum": [ + "ip", + "icmp", + "igmp", + "ggp", + "ipv4", + "tcp", + "pup", + "udp", + "idp", + "ipv6", + "ipv6RoutingHeader", + "ipv6FragmentHeader", + "ipSecEncapsulatingSecurityPayload", + "ipSecAuthenticationHeader", + "icmpV6", + "ipv6NoNextHeader", + "ipv6DestinationOptions", + "nd", + "raw", + "ipx", + "spx", + "spxII", + "unknownFutureValue", + "unknown" + ], + "type": "string" + }, + "microsoft.graph.userAccountSecurityType": { + "title": "userAccountSecurityType", + "enum": [ + "unknown", + "standard", + "power", + "administrator", + "unknownFutureValue" + ], + "type": "string" + }, + "odata.error": { + "required": [ + "error" + ], + "type": "object", + "properties": { + "error": { + "$ref": "#/components/schemas/odata.error.main" + } + } + }, + "odata.error.main": { + "required": [ + "code", + "message" + ], + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "target": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/components/schemas/odata.error.detail" + } + }, + "innererror": { + "type": "object", + "description": "The structure of this object is service-specific" + } + } + }, + "odata.error.detail": { + "required": [ + "code", + "message" + ], + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "target": { + "type": "string" + } + } + } + }, + "responses": { + "error": { + "description": "error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/odata.error" + } + } + } + } + }, + "parameters": { + "top": { + "name": "$top", + "in": "query", + "description": "Show only the first n items", + "schema": { + "minimum": 0, + "type": "integer" + }, + "example": 50 + }, + "skip": { + "name": "$skip", + "in": "query", + "description": "Skip the first n items", + "schema": { + "minimum": 0, + "type": "integer" + } + }, + "count": { + "name": "$count", + "in": "query", + "description": "Include count of items", + "schema": { + "type": "boolean" + } + }, + "filter": { + "name": "$filter", + "in": "query", + "description": "Filter items by property values", + "schema": { + "type": "string" + } + }, + "search": { + "name": "$search", + "in": "query", + "description": "Search items by search phrases", + "schema": { + "type": "string" + } + }, + "sessionId": { + "name": "workbook-session-id", + "description": "The ID of the session", + "in": "header", + "required": false, + "schema": { + "type": "string" + } + } + }, + "examples": { + "Entity": { + "value": { + "id": "String (identifier)" + } + }, + "microsoft.graph.directory": { + "value": { + "deletedItems": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ] + } + }, + "microsoft.graph.directoryObject": { + "value": { + "deletedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.device": { + "value": { + "accountEnabled": true, + "alternativeSecurityIds": [ + { + "@odata.type": "microsoft.graph.alternativeSecurityId" + } + ], + "approximateLastSignInDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceId": "String", + "deviceMetadata": "String", + "deviceVersion": 0, + "displayName": "String", + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "isCompliant": true, + "isManaged": true, + "onPremisesLastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "onPremisesSyncEnabled": true, + "operatingSystem": "String", + "operatingSystemVersion": "String", + "physicalIds": [ + "String" + ], + "registeredOwners": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "registeredUsers": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "trustType": "String" + } + }, + "microsoft.graph.alternativeSecurityId": { + "value": { + "identityProvider": "String", + "key": "AA==", + "type": 0 + } + }, + "microsoft.graph.extension": {}, + "microsoft.graph.directoryRole": { + "value": { + "description": "String", + "displayName": "String", + "members": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "roleTemplateId": "String" + } + }, + "microsoft.graph.directoryRoleTemplate": { + "value": { + "description": "String", + "displayName": "String" + } + }, + "microsoft.graph.domain": { + "value": { + "authenticationType": "String", + "availabilityStatus": "String", + "domainNameReferences": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "isAdminManaged": true, + "isDefault": true, + "isInitial": true, + "isRoot": true, + "isVerified": true, + "serviceConfigurationRecords": [ + { + "@odata.type": "microsoft.graph.domainDnsRecord" + } + ], + "state": { + "@odata.type": "microsoft.graph.domainState" + }, + "supportedServices": [ + "String" + ], + "verificationDnsRecords": [ + { + "@odata.type": "microsoft.graph.domainDnsRecord" + } + ] + } + }, + "microsoft.graph.domainState": { + "value": { + "lastActionDateTime": "0001-01-01T00:00:00.0000000+00:00", + "operation": "String", + "status": "String" + } + }, + "microsoft.graph.domainDnsRecord": { + "value": { + "isOptional": true, + "label": "String", + "recordType": "String", + "supportedService": "String", + "ttl": 0 + } + }, + "microsoft.graph.domainDnsCnameRecord": { + "value": { + "canonicalName": "String" + } + }, + "microsoft.graph.domainDnsMxRecord": { + "value": { + "mailExchange": "String", + "preference": 0 + } + }, + "microsoft.graph.domainDnsSrvRecord": { + "value": { + "nameTarget": "String", + "port": 0, + "priority": 0, + "protocol": "String", + "service": "String", + "weight": 0 + } + }, + "microsoft.graph.domainDnsTxtRecord": { + "value": { + "text": "String" + } + }, + "microsoft.graph.domainDnsUnavailableRecord": { + "value": { + "description": "String" + } + }, + "microsoft.graph.licenseDetails": { + "value": { + "servicePlans": [ + { + "@odata.type": "microsoft.graph.servicePlanInfo" + } + ], + "skuId": "00000000-0000-0000-0000-000000000000", + "skuPartNumber": "String" + } + }, + "microsoft.graph.servicePlanInfo": { + "value": { + "appliesTo": "String", + "provisioningStatus": "String", + "servicePlanId": "00000000-0000-0000-0000-000000000000", + "servicePlanName": "String" + } + }, + "microsoft.graph.group": { + "value": { + "acceptedSenders": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "allowExternalSenders": true, + "autoSubscribeNewMembers": true, + "calendar": { + "@odata.type": "microsoft.graph.calendar" + }, + "calendarView": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "classification": "String", + "conversations": [ + { + "@odata.type": "microsoft.graph.conversation" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "createdOnBehalfOf": { + "@odata.type": "microsoft.graph.directoryObject" + }, + "description": "String", + "displayName": "String", + "drive": { + "@odata.type": "microsoft.graph.drive" + }, + "drives": [ + { + "@odata.type": "microsoft.graph.drive" + } + ], + "events": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "groupLifecyclePolicies": [ + { + "@odata.type": "microsoft.graph.groupLifecyclePolicy" + } + ], + "groupTypes": [ + "String" + ], + "isSubscribedByMail": true, + "mail": "String", + "mailEnabled": true, + "mailNickname": "String", + "memberOf": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "members": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "onenote": { + "@odata.type": "microsoft.graph.onenote" + }, + "onPremisesLastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "onPremisesProvisioningErrors": [ + { + "@odata.type": "microsoft.graph.onPremisesProvisioningError" + } + ], + "onPremisesSecurityIdentifier": "String", + "onPremisesSyncEnabled": true, + "owners": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "photo": { + "@odata.type": "microsoft.graph.profilePhoto" + }, + "photos": [ + { + "@odata.type": "microsoft.graph.profilePhoto" + } + ], + "planner": { + "@odata.type": "microsoft.graph.plannerGroup" + }, + "proxyAddresses": [ + "String" + ], + "rejectedSenders": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "renewedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "securityEnabled": true, + "settings": [ + { + "@odata.type": "microsoft.graph.groupSetting" + } + ], + "sites": [ + { + "@odata.type": "microsoft.graph.site" + } + ], + "threads": [ + { + "@odata.type": "microsoft.graph.conversationThread" + } + ], + "unseenCount": 0, + "visibility": "String" + } + }, + "microsoft.graph.onPremisesProvisioningError": { + "value": { + "category": "String", + "occurredDateTime": "0001-01-01T00:00:00.0000000+00:00", + "propertyCausingError": "String", + "value": "String" + } + }, + "microsoft.graph.groupSetting": { + "value": { + "displayName": "String", + "templateId": "String", + "values": [ + { + "@odata.type": "microsoft.graph.settingValue" + } + ] + } + }, + "microsoft.graph.conversationThread": { + "value": { + "ccRecipients": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "hasAttachments": true, + "isLocked": true, + "lastDeliveredDateTime": "0001-01-01T00:00:00.0000000+00:00", + "posts": [ + { + "@odata.type": "microsoft.graph.post" + } + ], + "preview": "String", + "topic": "String", + "toRecipients": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "uniqueSenders": [ + "String" + ] + } + }, + "microsoft.graph.calendar": { + "value": { + "calendarView": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "canEdit": true, + "canShare": true, + "canViewPrivateItems": true, + "changeKey": "String", + "color": { + "@odata.type": "microsoft.graph.calendarColor" + }, + "events": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "name": "String", + "owner": { + "@odata.type": "microsoft.graph.emailAddress" + }, + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ] + } + }, + "microsoft.graph.outlookItem": { + "value": { + "categories": [ + "String" + ], + "changeKey": "String", + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.event": { + "value": { + "attachments": [ + { + "@odata.type": "microsoft.graph.attachment" + } + ], + "attendees": [ + { + "@odata.type": "microsoft.graph.attendee" + } + ], + "body": { + "@odata.type": "microsoft.graph.itemBody" + }, + "bodyPreview": "String", + "calendar": { + "@odata.type": "microsoft.graph.calendar" + }, + "end": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "hasAttachments": true, + "iCalUId": "String", + "importance": { + "@odata.type": "microsoft.graph.importance" + }, + "instances": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "isAllDay": true, + "isCancelled": true, + "isOrganizer": true, + "isReminderOn": true, + "location": { + "@odata.type": "microsoft.graph.location" + }, + "locations": [ + { + "@odata.type": "microsoft.graph.location" + } + ], + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "onlineMeetingUrl": "String", + "organizer": { + "@odata.type": "microsoft.graph.recipient" + }, + "originalEndTimeZone": "String", + "originalStart": "0001-01-01T00:00:00.0000000+00:00", + "originalStartTimeZone": "String", + "recurrence": { + "@odata.type": "microsoft.graph.patternedRecurrence" + }, + "reminderMinutesBeforeStart": 0, + "responseRequested": true, + "responseStatus": { + "@odata.type": "microsoft.graph.responseStatus" + }, + "sensitivity": { + "@odata.type": "microsoft.graph.sensitivity" + }, + "seriesMasterId": "String", + "showAs": { + "@odata.type": "microsoft.graph.freeBusyStatus" + }, + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ], + "start": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "subject": "String", + "type": { + "@odata.type": "microsoft.graph.eventType" + }, + "webLink": "String" + } + }, + "microsoft.graph.conversation": { + "value": { + "hasAttachments": true, + "lastDeliveredDateTime": "0001-01-01T00:00:00.0000000+00:00", + "preview": "String", + "threads": [ + { + "@odata.type": "microsoft.graph.conversationThread" + } + ], + "topic": "String", + "uniqueSenders": [ + "String" + ] + } + }, + "microsoft.graph.profilePhoto": { + "value": { + "height": 0, + "width": 0 + } + }, + "microsoft.graph.baseItem": { + "value": { + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "createdByUser": { + "@odata.type": "microsoft.graph.user" + }, + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "eTag": "String", + "lastModifiedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "lastModifiedByUser": { + "@odata.type": "microsoft.graph.user" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "name": "String", + "parentReference": { + "@odata.type": "microsoft.graph.itemReference" + }, + "webUrl": "String" + } + }, + "microsoft.graph.drive": { + "value": { + "driveType": "String", + "items": [ + { + "@odata.type": "microsoft.graph.driveItem" + } + ], + "list": { + "@odata.type": "microsoft.graph.list" + }, + "owner": { + "@odata.type": "microsoft.graph.identitySet" + }, + "quota": { + "@odata.type": "microsoft.graph.quota" + }, + "root": { + "@odata.type": "microsoft.graph.driveItem" + }, + "sharePointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + }, + "special": [ + { + "@odata.type": "microsoft.graph.driveItem" + } + ], + "system": { + "@odata.type": "microsoft.graph.systemFacet" + } + } + }, + "microsoft.graph.site": { + "value": { + "columns": [ + { + "@odata.type": "microsoft.graph.columnDefinition" + } + ], + "contentTypes": [ + { + "@odata.type": "microsoft.graph.contentType" + } + ], + "displayName": "String", + "drive": { + "@odata.type": "microsoft.graph.drive" + }, + "drives": [ + { + "@odata.type": "microsoft.graph.drive" + } + ], + "items": [ + { + "@odata.type": "microsoft.graph.baseItem" + } + ], + "lists": [ + { + "@odata.type": "microsoft.graph.list" + } + ], + "onenote": { + "@odata.type": "microsoft.graph.onenote" + }, + "root": { + "@odata.type": "microsoft.graph.root" + }, + "sharepointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + }, + "siteCollection": { + "@odata.type": "microsoft.graph.siteCollection" + }, + "sites": [ + { + "@odata.type": "microsoft.graph.site" + } + ] + } + }, + "microsoft.graph.plannerGroup": { + "value": { + "plans": [ + { + "@odata.type": "microsoft.graph.plannerPlan" + } + ] + } + }, + "microsoft.graph.onenote": { + "value": { + "notebooks": [ + { + "@odata.type": "microsoft.graph.notebook" + } + ], + "operations": [ + { + "@odata.type": "microsoft.graph.onenoteOperation" + } + ], + "pages": [ + { + "@odata.type": "microsoft.graph.onenotePage" + } + ], + "resources": [ + { + "@odata.type": "microsoft.graph.onenoteResource" + } + ], + "sectionGroups": [ + { + "@odata.type": "microsoft.graph.sectionGroup" + } + ], + "sections": [ + { + "@odata.type": "microsoft.graph.onenoteSection" + } + ] + } + }, + "microsoft.graph.groupLifecyclePolicy": { + "value": { + "alternateNotificationEmails": "String", + "groupLifetimeInDays": 0, + "managedGroupTypes": "String" + } + }, + "microsoft.graph.contract": { + "value": { + "contractType": "String", + "customerId": "00000000-0000-0000-0000-000000000000", + "defaultDomainName": "String", + "displayName": "String" + } + }, + "microsoft.graph.subscribedSku": { + "value": { + "appliesTo": "String", + "capabilityStatus": "String", + "consumedUnits": 0, + "prepaidUnits": { + "@odata.type": "microsoft.graph.licenseUnitsDetail" + }, + "servicePlans": [ + { + "@odata.type": "microsoft.graph.servicePlanInfo" + } + ], + "skuId": "00000000-0000-0000-0000-000000000000", + "skuPartNumber": "String" + } + }, + "microsoft.graph.licenseUnitsDetail": { + "value": { + "enabled": 0, + "suspended": 0, + "warning": 0 + } + }, + "microsoft.graph.organization": { + "value": { + "assignedPlans": [ + { + "@odata.type": "microsoft.graph.assignedPlan" + } + ], + "businessPhones": [ + "String" + ], + "city": "String", + "country": "String", + "countryLetterCode": "String", + "displayName": "String", + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "marketingNotificationEmails": [ + "String" + ], + "mobileDeviceManagementAuthority": { + "@odata.type": "microsoft.graph.mdmAuthority" + }, + "onPremisesLastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "onPremisesSyncEnabled": true, + "postalCode": "String", + "preferredLanguage": "String", + "privacyProfile": { + "@odata.type": "microsoft.graph.privacyProfile" + }, + "provisionedPlans": [ + { + "@odata.type": "microsoft.graph.provisionedPlan" + } + ], + "securityComplianceNotificationMails": [ + "String" + ], + "securityComplianceNotificationPhones": [ + "String" + ], + "state": "String", + "street": "String", + "technicalNotificationMails": [ + "String" + ], + "verifiedDomains": [ + { + "@odata.type": "microsoft.graph.verifiedDomain" + } + ] + } + }, + "microsoft.graph.assignedPlan": { + "value": { + "assignedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "capabilityStatus": "String", + "service": "String", + "servicePlanId": "00000000-0000-0000-0000-000000000000" + } + }, + "microsoft.graph.privacyProfile": { + "value": { + "contactEmail": "String", + "statementUrl": "String" + } + }, + "microsoft.graph.provisionedPlan": { + "value": { + "capabilityStatus": "String", + "provisioningStatus": "String", + "service": "String" + } + }, + "microsoft.graph.verifiedDomain": { + "value": { + "capabilities": "String", + "isDefault": true, + "isInitial": true, + "name": "String", + "type": "String" + } + }, + "microsoft.graph.user": { + "value": { + "aboutMe": "String", + "accountEnabled": true, + "activities": [ + { + "@odata.type": "microsoft.graph.userActivity" + } + ], + "ageGroup": "String", + "assignedLicenses": [ + { + "@odata.type": "microsoft.graph.assignedLicense" + } + ], + "assignedPlans": [ + { + "@odata.type": "microsoft.graph.assignedPlan" + } + ], + "birthday": "0001-01-01T00:00:00.0000000+00:00", + "businessPhones": [ + "String" + ], + "calendar": { + "@odata.type": "microsoft.graph.calendar" + }, + "calendarGroups": [ + { + "@odata.type": "microsoft.graph.calendarGroup" + } + ], + "calendars": [ + { + "@odata.type": "microsoft.graph.calendar" + } + ], + "calendarView": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "city": "String", + "companyName": "String", + "consentProvidedForMinor": "String", + "contactFolders": [ + { + "@odata.type": "microsoft.graph.contactFolder" + } + ], + "contacts": [ + { + "@odata.type": "microsoft.graph.contact" + } + ], + "country": "String", + "createdObjects": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "department": "String", + "deviceEnrollmentLimit": 0, + "deviceManagementTroubleshootingEvents": [ + { + "@odata.type": "microsoft.graph.deviceManagementTroubleshootingEvent" + } + ], + "directReports": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "displayName": "String", + "drive": { + "@odata.type": "microsoft.graph.drive" + }, + "drives": [ + { + "@odata.type": "microsoft.graph.drive" + } + ], + "events": [ + { + "@odata.type": "microsoft.graph.event" + } + ], + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "givenName": "String", + "hireDate": "0001-01-01T00:00:00.0000000+00:00", + "imAddresses": [ + "String" + ], + "inferenceClassification": { + "@odata.type": "microsoft.graph.inferenceClassification" + }, + "insights": { + "@odata.type": "microsoft.graph.officeGraphInsights" + }, + "interests": [ + "String" + ], + "jobTitle": "String", + "legalAgeGroupClassification": "String", + "licenseDetails": [ + { + "@odata.type": "microsoft.graph.licenseDetails" + } + ], + "mail": "String", + "mailboxSettings": { + "@odata.type": "microsoft.graph.mailboxSettings" + }, + "mailFolders": [ + { + "@odata.type": "microsoft.graph.mailFolder" + } + ], + "mailNickname": "String", + "managedAppRegistrations": [ + { + "@odata.type": "microsoft.graph.managedAppRegistration" + } + ], + "managedDevices": [ + { + "@odata.type": "microsoft.graph.managedDevice" + } + ], + "manager": { + "@odata.type": "microsoft.graph.directoryObject" + }, + "memberOf": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "messages": [ + { + "@odata.type": "microsoft.graph.message" + } + ], + "mobilePhone": "String", + "mySite": "String", + "officeLocation": "String", + "onenote": { + "@odata.type": "microsoft.graph.onenote" + }, + "onPremisesDomainName": "String", + "onPremisesExtensionAttributes": { + "@odata.type": "microsoft.graph.onPremisesExtensionAttributes" + }, + "onPremisesImmutableId": "String", + "onPremisesLastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "onPremisesProvisioningErrors": [ + { + "@odata.type": "microsoft.graph.onPremisesProvisioningError" + } + ], + "onPremisesSamAccountName": "String", + "onPremisesSecurityIdentifier": "String", + "onPremisesSyncEnabled": true, + "onPremisesUserPrincipalName": "String", + "outlook": { + "@odata.type": "microsoft.graph.outlookUser" + }, + "ownedDevices": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "ownedObjects": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "passwordPolicies": "String", + "passwordProfile": { + "@odata.type": "microsoft.graph.passwordProfile" + }, + "pastProjects": [ + "String" + ], + "people": [ + { + "@odata.type": "microsoft.graph.person" + } + ], + "photo": { + "@odata.type": "microsoft.graph.profilePhoto" + }, + "photos": [ + { + "@odata.type": "microsoft.graph.profilePhoto" + } + ], + "planner": { + "@odata.type": "microsoft.graph.plannerUser" + }, + "postalCode": "String", + "preferredLanguage": "String", + "preferredName": "String", + "provisionedPlans": [ + { + "@odata.type": "microsoft.graph.provisionedPlan" + } + ], + "proxyAddresses": [ + "String" + ], + "registeredDevices": [ + { + "@odata.type": "microsoft.graph.directoryObject" + } + ], + "responsibilities": [ + "String" + ], + "schools": [ + "String" + ], + "settings": { + "@odata.type": "microsoft.graph.userSettings" + }, + "skills": [ + "String" + ], + "state": "String", + "streetAddress": "String", + "surname": "String", + "usageLocation": "String", + "userPrincipalName": "String", + "userType": "String" + } + }, + "microsoft.graph.assignedLicense": { + "value": { + "disabledPlans": [ + "00000000-0000-0000-0000-000000000000" + ], + "skuId": "00000000-0000-0000-0000-000000000000" + } + }, + "microsoft.graph.onPremisesExtensionAttributes": { + "value": { + "extensionAttribute1": "String", + "extensionAttribute10": "String", + "extensionAttribute11": "String", + "extensionAttribute12": "String", + "extensionAttribute13": "String", + "extensionAttribute14": "String", + "extensionAttribute15": "String", + "extensionAttribute2": "String", + "extensionAttribute3": "String", + "extensionAttribute4": "String", + "extensionAttribute5": "String", + "extensionAttribute6": "String", + "extensionAttribute7": "String", + "extensionAttribute8": "String", + "extensionAttribute9": "String" + } + }, + "microsoft.graph.passwordProfile": { + "value": { + "forceChangePasswordNextSignIn": true, + "password": "String" + } + }, + "microsoft.graph.mailboxSettings": { + "value": { + "archiveFolder": "String", + "automaticRepliesSetting": { + "@odata.type": "microsoft.graph.automaticRepliesSetting" + }, + "language": { + "@odata.type": "microsoft.graph.localeInfo" + }, + "timeZone": "String", + "workingHours": { + "@odata.type": "microsoft.graph.workingHours" + } + } + }, + "microsoft.graph.automaticRepliesSetting": { + "value": { + "externalAudience": { + "@odata.type": "microsoft.graph.externalAudienceScope" + }, + "externalReplyMessage": "String", + "internalReplyMessage": "String", + "scheduledEndDateTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "scheduledStartDateTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "status": { + "@odata.type": "microsoft.graph.automaticRepliesStatus" + } + } + }, + "microsoft.graph.dateTimeTimeZone": { + "value": { + "dateTime": "String", + "timeZone": "String" + } + }, + "microsoft.graph.localeInfo": { + "value": { + "displayName": "String", + "locale": "String" + } + }, + "microsoft.graph.workingHours": { + "value": { + "daysOfWeek": [ + { + "@odata.type": "microsoft.graph.dayOfWeek" + } + ], + "endTime": "TimeOfDay (timestamp)", + "startTime": "TimeOfDay (timestamp)", + "timeZone": { + "@odata.type": "microsoft.graph.timeZoneBase" + } + } + }, + "microsoft.graph.timeZoneBase": { + "value": { + "name": "String" + } + }, + "microsoft.graph.outlookUser": { + "value": { + "masterCategories": [ + { + "@odata.type": "microsoft.graph.outlookCategory" + } + ] + } + }, + "microsoft.graph.message": { + "value": { + "attachments": [ + { + "@odata.type": "microsoft.graph.attachment" + } + ], + "bccRecipients": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "body": { + "@odata.type": "microsoft.graph.itemBody" + }, + "bodyPreview": "String", + "ccRecipients": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "conversationId": "String", + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "flag": { + "@odata.type": "microsoft.graph.followupFlag" + }, + "from": { + "@odata.type": "microsoft.graph.recipient" + }, + "hasAttachments": true, + "importance": { + "@odata.type": "microsoft.graph.importance" + }, + "inferenceClassification": { + "@odata.type": "microsoft.graph.inferenceClassificationType" + }, + "internetMessageHeaders": [ + { + "@odata.type": "microsoft.graph.internetMessageHeader" + } + ], + "internetMessageId": "String", + "isDeliveryReceiptRequested": true, + "isDraft": true, + "isRead": true, + "isReadReceiptRequested": true, + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "parentFolderId": "String", + "receivedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "replyTo": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "sender": { + "@odata.type": "microsoft.graph.recipient" + }, + "sentDateTime": "0001-01-01T00:00:00.0000000+00:00", + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ], + "subject": "String", + "toRecipients": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "uniqueBody": { + "@odata.type": "microsoft.graph.itemBody" + }, + "webLink": "String" + } + }, + "microsoft.graph.mailFolder": { + "value": { + "childFolderCount": 0, + "childFolders": [ + { + "@odata.type": "microsoft.graph.mailFolder" + } + ], + "displayName": "String", + "messageRules": [ + { + "@odata.type": "microsoft.graph.messageRule" + } + ], + "messages": [ + { + "@odata.type": "microsoft.graph.message" + } + ], + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "parentFolderId": "String", + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ], + "totalItemCount": 0, + "unreadItemCount": 0 + } + }, + "microsoft.graph.calendarGroup": { + "value": { + "calendars": [ + { + "@odata.type": "microsoft.graph.calendar" + } + ], + "changeKey": "String", + "classId": "00000000-0000-0000-0000-000000000000", + "name": "String" + } + }, + "microsoft.graph.person": { + "value": { + "birthday": "String", + "companyName": "String", + "department": "String", + "displayName": "String", + "givenName": "String", + "imAddress": "String", + "isFavorite": true, + "jobTitle": "String", + "officeLocation": "String", + "personNotes": "String", + "personType": { + "@odata.type": "microsoft.graph.personType" + }, + "phones": [ + { + "@odata.type": "microsoft.graph.phone" + } + ], + "postalAddresses": [ + { + "@odata.type": "microsoft.graph.location" + } + ], + "profession": "String", + "scoredEmailAddresses": [ + { + "@odata.type": "microsoft.graph.scoredEmailAddress" + } + ], + "surname": "String", + "userPrincipalName": "String", + "websites": [ + { + "@odata.type": "microsoft.graph.website" + } + ], + "yomiCompany": "String" + } + }, + "microsoft.graph.contact": { + "value": { + "assistantName": "String", + "birthday": "0001-01-01T00:00:00.0000000+00:00", + "businessAddress": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "businessHomePage": "String", + "businessPhones": [ + "String" + ], + "children": [ + "String" + ], + "companyName": "String", + "department": "String", + "displayName": "String", + "emailAddresses": [ + { + "@odata.type": "microsoft.graph.emailAddress" + } + ], + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "fileAs": "String", + "generation": "String", + "givenName": "String", + "homeAddress": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "homePhones": [ + "String" + ], + "imAddresses": [ + "String" + ], + "initials": "String", + "jobTitle": "String", + "manager": "String", + "middleName": "String", + "mobilePhone": "String", + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "nickName": "String", + "officeLocation": "String", + "otherAddress": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "parentFolderId": "String", + "personalNotes": "String", + "photo": { + "@odata.type": "microsoft.graph.profilePhoto" + }, + "profession": "String", + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ], + "spouseName": "String", + "surname": "String", + "title": "String", + "yomiCompanyName": "String", + "yomiGivenName": "String", + "yomiSurname": "String" + } + }, + "microsoft.graph.contactFolder": { + "value": { + "childFolders": [ + { + "@odata.type": "microsoft.graph.contactFolder" + } + ], + "contacts": [ + { + "@odata.type": "microsoft.graph.contact" + } + ], + "displayName": "String", + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "parentFolderId": "String", + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ] + } + }, + "microsoft.graph.inferenceClassification": { + "value": { + "overrides": [ + { + "@odata.type": "microsoft.graph.inferenceClassificationOverride" + } + ] + } + }, + "microsoft.graph.plannerUser": { + "value": { + "plans": [ + { + "@odata.type": "microsoft.graph.plannerPlan" + } + ], + "tasks": [ + { + "@odata.type": "microsoft.graph.plannerTask" + } + ] + } + }, + "microsoft.graph.managedDevice": { + "value": { + "activationLockBypassCode": "String", + "androidSecurityPatchLevel": "String", + "azureADDeviceId": "String", + "azureADRegistered": true, + "complianceGracePeriodExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "complianceState": { + "@odata.type": "microsoft.graph.complianceState" + }, + "configurationManagerClientEnabledFeatures": { + "@odata.type": "microsoft.graph.configurationManagerClientEnabledFeatures" + }, + "deviceActionResults": [ + { + "@odata.type": "microsoft.graph.deviceActionResult" + } + ], + "deviceCategory": { + "@odata.type": "microsoft.graph.deviceCategory" + }, + "deviceCategoryDisplayName": "String", + "deviceCompliancePolicyStates": [ + { + "@odata.type": "microsoft.graph.deviceCompliancePolicyState" + } + ], + "deviceConfigurationStates": [ + { + "@odata.type": "microsoft.graph.deviceConfigurationState" + } + ], + "deviceEnrollmentType": { + "@odata.type": "microsoft.graph.deviceEnrollmentType" + }, + "deviceHealthAttestationState": { + "@odata.type": "microsoft.graph.deviceHealthAttestationState" + }, + "deviceName": "String", + "deviceRegistrationState": { + "@odata.type": "microsoft.graph.deviceRegistrationState" + }, + "easActivated": true, + "easActivationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "easDeviceId": "String", + "emailAddress": "String", + "enrolledDateTime": "0001-01-01T00:00:00.0000000+00:00", + "exchangeAccessState": { + "@odata.type": "microsoft.graph.deviceManagementExchangeAccessState" + }, + "exchangeAccessStateReason": { + "@odata.type": "microsoft.graph.deviceManagementExchangeAccessStateReason" + }, + "exchangeLastSuccessfulSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "freeStorageSpaceInBytes": 0, + "imei": "String", + "isEncrypted": true, + "isSupervised": true, + "jailBroken": "String", + "lastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "managedDeviceName": "String", + "managedDeviceOwnerType": { + "@odata.type": "microsoft.graph.managedDeviceOwnerType" + }, + "managementAgent": { + "@odata.type": "microsoft.graph.managementAgentType" + }, + "manufacturer": "String", + "meid": "String", + "model": "String", + "operatingSystem": "String", + "osVersion": "String", + "partnerReportedThreatState": { + "@odata.type": "microsoft.graph.managedDevicePartnerReportedHealthState" + }, + "phoneNumber": "String", + "remoteAssistanceSessionErrorDetails": "String", + "remoteAssistanceSessionUrl": "String", + "serialNumber": "String", + "subscriberCarrier": "String", + "totalStorageSpaceInBytes": 0, + "userDisplayName": "String", + "userId": "String", + "userPrincipalName": "String", + "wiFiMacAddress": "String" + } + }, + "microsoft.graph.managedAppRegistration": { + "value": { + "appIdentifier": { + "@odata.type": "microsoft.graph.mobileAppIdentifier" + }, + "applicationVersion": "String", + "appliedPolicies": [ + { + "@odata.type": "microsoft.graph.managedAppPolicy" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceName": "String", + "deviceTag": "String", + "deviceType": "String", + "flaggedReasons": [ + { + "@odata.type": "microsoft.graph.managedAppFlaggedReason" + } + ], + "intendedPolicies": [ + { + "@odata.type": "microsoft.graph.managedAppPolicy" + } + ], + "lastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "managementSdkVersion": "String", + "operations": [ + { + "@odata.type": "microsoft.graph.managedAppOperation" + } + ], + "platformVersion": "String", + "userId": "String", + "version": "String" + } + }, + "microsoft.graph.deviceManagementTroubleshootingEvent": { + "value": { + "correlationId": "String", + "eventDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.userActivity": { + "value": { + "activationUrl": "String", + "activitySourceHost": "String", + "appActivityId": "String", + "appDisplayName": "String", + "contentInfo": { + "@odata.type": "Json" + }, + "contentUrl": "String", + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "fallbackUrl": "String", + "historyItems": [ + { + "@odata.type": "microsoft.graph.activityHistoryItem" + } + ], + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.status" + }, + "userTimezone": "String", + "visualElements": { + "@odata.type": "microsoft.graph.visualInfo" + } + } + }, + "microsoft.graph.officeGraphInsights": { + "value": { + "shared": [ + { + "@odata.type": "microsoft.graph.sharedInsight" + } + ], + "trending": [ + { + "@odata.type": "microsoft.graph.trending" + } + ], + "used": [ + { + "@odata.type": "microsoft.graph.usedInsight" + } + ] + } + }, + "microsoft.graph.userSettings": { + "value": { + "contributionToContentDiscoveryAsOrganizationDisabled": true, + "contributionToContentDiscoveryDisabled": true + } + }, + "microsoft.graph.settingValue": { + "value": { + "name": "String", + "value": "String" + } + }, + "microsoft.graph.groupSettingTemplate": { + "value": { + "description": "String", + "displayName": "String", + "values": [ + { + "@odata.type": "microsoft.graph.settingTemplateValue" + } + ] + } + }, + "microsoft.graph.settingTemplateValue": { + "value": { + "defaultValue": "String", + "description": "String", + "name": "String", + "type": "String" + } + }, + "microsoft.graph.ComplexExtensionValue": {}, + "microsoft.graph.schemaExtension": { + "value": { + "description": "String", + "owner": "String", + "properties": [ + { + "@odata.type": "microsoft.graph.extensionSchemaProperty" + } + ], + "status": "String", + "targetTypes": [ + "String" + ] + } + }, + "microsoft.graph.extensionSchemaProperty": { + "value": { + "name": "String", + "type": "String" + } + }, + "microsoft.graph.attachment": { + "value": { + "contentType": "String", + "isInline": true, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "name": "String", + "size": 0 + } + }, + "microsoft.graph.customTimeZone": { + "value": { + "bias": 0, + "daylightOffset": { + "@odata.type": "microsoft.graph.daylightTimeZoneOffset" + }, + "standardOffset": { + "@odata.type": "microsoft.graph.standardTimeZoneOffset" + } + } + }, + "microsoft.graph.standardTimeZoneOffset": { + "value": { + "dayOccurrence": 0, + "dayOfWeek": { + "@odata.type": "microsoft.graph.dayOfWeek" + }, + "month": 0, + "time": "TimeOfDay (timestamp)", + "year": 0 + } + }, + "microsoft.graph.daylightTimeZoneOffset": { + "value": { + "daylightBias": 0 + } + }, + "microsoft.graph.outlookCategory": { + "value": { + "color": { + "@odata.type": "microsoft.graph.categoryColor" + }, + "displayName": "String" + } + }, + "microsoft.graph.recipient": { + "value": { + "emailAddress": { + "@odata.type": "microsoft.graph.emailAddress" + } + } + }, + "microsoft.graph.emailAddress": { + "value": { + "address": "String", + "name": "String" + } + }, + "microsoft.graph.attendeeBase": { + "value": { + "type": { + "@odata.type": "microsoft.graph.attendeeType" + } + } + }, + "microsoft.graph.meetingTimeSuggestionsResult": { + "value": { + "emptySuggestionsReason": "String", + "meetingTimeSuggestions": [ + { + "@odata.type": "microsoft.graph.meetingTimeSuggestion" + } + ] + } + }, + "microsoft.graph.meetingTimeSuggestion": { + "value": { + "attendeeAvailability": [ + { + "@odata.type": "microsoft.graph.attendeeAvailability" + } + ], + "confidence": 0, + "locations": [ + { + "@odata.type": "microsoft.graph.location" + } + ], + "meetingTimeSlot": { + "@odata.type": "microsoft.graph.timeSlot" + }, + "organizerAvailability": { + "@odata.type": "microsoft.graph.freeBusyStatus" + }, + "suggestionReason": "String" + } + }, + "microsoft.graph.timeSlot": { + "value": { + "end": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "start": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + } + } + }, + "microsoft.graph.attendeeAvailability": { + "value": { + "attendee": { + "@odata.type": "microsoft.graph.attendeeBase" + }, + "availability": { + "@odata.type": "microsoft.graph.freeBusyStatus" + } + } + }, + "microsoft.graph.location": { + "value": { + "address": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "coordinates": { + "@odata.type": "microsoft.graph.outlookGeoCoordinates" + }, + "displayName": "String", + "locationEmailAddress": "String", + "locationType": { + "@odata.type": "microsoft.graph.locationType" + }, + "locationUri": "String", + "uniqueId": "String", + "uniqueIdType": { + "@odata.type": "microsoft.graph.locationUniqueIdType" + } + } + }, + "microsoft.graph.physicalAddress": { + "value": { + "city": "String", + "countryOrRegion": "String", + "postalCode": "String", + "state": "String", + "street": "String" + } + }, + "microsoft.graph.outlookGeoCoordinates": { + "value": { + "accuracy": 0, + "altitude": 0, + "altitudeAccuracy": 0, + "latitude": 0, + "longitude": 0 + } + }, + "microsoft.graph.locationConstraint": { + "value": { + "isRequired": true, + "locations": [ + { + "@odata.type": "microsoft.graph.locationConstraintItem" + } + ], + "suggestLocation": true + } + }, + "microsoft.graph.locationConstraintItem": { + "value": { + "resolveAvailability": true + } + }, + "microsoft.graph.timeConstraint": { + "value": { + "activityDomain": { + "@odata.type": "microsoft.graph.activityDomain" + }, + "timeslots": [ + { + "@odata.type": "microsoft.graph.timeSlot" + } + ] + } + }, + "microsoft.graph.reminder": { + "value": { + "changeKey": "String", + "eventEndTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "eventId": "String", + "eventLocation": { + "@odata.type": "microsoft.graph.location" + }, + "eventStartTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "eventSubject": "String", + "eventWebLink": "String", + "reminderFireTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + } + } + }, + "microsoft.graph.mailTips": { + "value": { + "automaticReplies": { + "@odata.type": "microsoft.graph.automaticRepliesMailTips" + }, + "customMailTip": "String", + "deliveryRestricted": true, + "emailAddress": { + "@odata.type": "microsoft.graph.emailAddress" + }, + "error": { + "@odata.type": "microsoft.graph.mailTipsError" + }, + "externalMemberCount": 0, + "isModerated": true, + "mailboxFull": true, + "maxMessageSize": 0, + "recipientScope": { + "@odata.type": "microsoft.graph.recipientScopeType" + }, + "recipientSuggestions": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "totalMemberCount": 0 + } + }, + "microsoft.graph.automaticRepliesMailTips": { + "value": { + "message": "String", + "messageLanguage": { + "@odata.type": "microsoft.graph.localeInfo" + }, + "scheduledEndTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "scheduledStartTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + } + } + }, + "microsoft.graph.mailTipsError": { + "value": { + "code": "String", + "message": "String" + } + }, + "microsoft.graph.timeZoneInformation": { + "value": { + "alias": "String", + "displayName": "String" + } + }, + "microsoft.graph.messageRule": { + "value": { + "actions": { + "@odata.type": "microsoft.graph.messageRuleActions" + }, + "conditions": { + "@odata.type": "microsoft.graph.messageRulePredicates" + }, + "displayName": "String", + "exceptions": { + "@odata.type": "microsoft.graph.messageRulePredicates" + }, + "hasError": true, + "isEnabled": true, + "isReadOnly": true, + "sequence": 0 + } + }, + "microsoft.graph.singleValueLegacyExtendedProperty": { + "value": { + "value": "String" + } + }, + "microsoft.graph.multiValueLegacyExtendedProperty": { + "value": { + "value": [ + "String" + ] + } + }, + "microsoft.graph.internetMessageHeader": { + "value": { + "name": "String", + "value": "String" + } + }, + "microsoft.graph.itemBody": { + "value": { + "content": "String", + "contentType": { + "@odata.type": "microsoft.graph.bodyType" + } + } + }, + "microsoft.graph.followupFlag": { + "value": { + "completedDateTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "dueDateTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + }, + "flagStatus": { + "@odata.type": "microsoft.graph.followupFlagStatus" + }, + "startDateTime": { + "@odata.type": "microsoft.graph.dateTimeTimeZone" + } + } + }, + "microsoft.graph.fileAttachment": { + "value": { + "contentBytes": "AA==", + "contentId": "String", + "contentLocation": "String" + } + }, + "microsoft.graph.itemAttachment": { + "value": { + "item": { + "@odata.type": "microsoft.graph.outlookItem" + } + } + }, + "microsoft.graph.responseStatus": { + "value": { + "response": { + "@odata.type": "microsoft.graph.responseType" + }, + "time": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.patternedRecurrence": { + "value": { + "pattern": { + "@odata.type": "microsoft.graph.recurrencePattern" + }, + "range": { + "@odata.type": "microsoft.graph.recurrenceRange" + } + } + }, + "microsoft.graph.recurrencePattern": { + "value": { + "dayOfMonth": 0, + "daysOfWeek": [ + { + "@odata.type": "microsoft.graph.dayOfWeek" + } + ], + "firstDayOfWeek": { + "@odata.type": "microsoft.graph.dayOfWeek" + }, + "index": { + "@odata.type": "microsoft.graph.weekIndex" + }, + "interval": 0, + "month": 0, + "type": { + "@odata.type": "microsoft.graph.recurrencePatternType" + } + } + }, + "microsoft.graph.recurrenceRange": { + "value": { + "endDate": "0001-01-01T00:00:00.0000000", + "numberOfOccurrences": 0, + "recurrenceTimeZone": "String", + "startDate": "0001-01-01T00:00:00.0000000", + "type": { + "@odata.type": "microsoft.graph.recurrenceRangeType" + } + } + }, + "microsoft.graph.attendee": { + "value": { + "status": { + "@odata.type": "microsoft.graph.responseStatus" + } + } + }, + "microsoft.graph.eventMessage": { + "value": { + "event": { + "@odata.type": "microsoft.graph.event" + }, + "meetingMessageType": { + "@odata.type": "microsoft.graph.meetingMessageType" + } + } + }, + "microsoft.graph.messageRulePredicates": { + "value": { + "bodyContains": [ + "String" + ], + "bodyOrSubjectContains": [ + "String" + ], + "categories": [ + "String" + ], + "fromAddresses": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "hasAttachments": true, + "headerContains": [ + "String" + ], + "importance": { + "@odata.type": "microsoft.graph.importance" + }, + "isApprovalRequest": true, + "isAutomaticForward": true, + "isAutomaticReply": true, + "isEncrypted": true, + "isMeetingRequest": true, + "isMeetingResponse": true, + "isNonDeliveryReport": true, + "isPermissionControlled": true, + "isReadReceipt": true, + "isSigned": true, + "isVoicemail": true, + "messageActionFlag": { + "@odata.type": "microsoft.graph.messageActionFlag" + }, + "notSentToMe": true, + "recipientContains": [ + "String" + ], + "senderContains": [ + "String" + ], + "sensitivity": { + "@odata.type": "microsoft.graph.sensitivity" + }, + "sentCcMe": true, + "sentOnlyToMe": true, + "sentToAddresses": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "sentToMe": true, + "sentToOrCcMe": true, + "subjectContains": [ + "String" + ], + "withinSizeRange": { + "@odata.type": "microsoft.graph.sizeRange" + } + } + }, + "microsoft.graph.sizeRange": { + "value": { + "maximumSize": 0, + "minimumSize": 0 + } + }, + "microsoft.graph.messageRuleActions": { + "value": { + "assignCategories": [ + "String" + ], + "copyToFolder": "String", + "delete": true, + "forwardAsAttachmentTo": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "forwardTo": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "markAsRead": true, + "markImportance": { + "@odata.type": "microsoft.graph.importance" + }, + "moveToFolder": "String", + "permanentDelete": true, + "redirectTo": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "stopProcessingRules": true + } + }, + "microsoft.graph.referenceAttachment": {}, + "microsoft.graph.openTypeExtension": { + "value": { + "extensionName": "String" + } + }, + "microsoft.graph.post": { + "value": { + "attachments": [ + { + "@odata.type": "microsoft.graph.attachment" + } + ], + "body": { + "@odata.type": "microsoft.graph.itemBody" + }, + "conversationId": "String", + "conversationThreadId": "String", + "extensions": [ + { + "@odata.type": "microsoft.graph.extension" + } + ], + "from": { + "@odata.type": "microsoft.graph.recipient" + }, + "hasAttachments": true, + "inReplyTo": { + "@odata.type": "microsoft.graph.post" + }, + "multiValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.multiValueLegacyExtendedProperty" + } + ], + "newParticipants": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "receivedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "sender": { + "@odata.type": "microsoft.graph.recipient" + }, + "singleValueExtendedProperties": [ + { + "@odata.type": "microsoft.graph.singleValueLegacyExtendedProperty" + } + ] + } + }, + "microsoft.graph.inferenceClassificationOverride": { + "value": { + "classifyAs": { + "@odata.type": "microsoft.graph.inferenceClassificationType" + }, + "senderEmailAddress": { + "@odata.type": "microsoft.graph.emailAddress" + } + } + }, + "microsoft.graph.scoredEmailAddress": { + "value": { + "address": "String", + "ItemId": "String", + "relevanceScore": 0, + "selectionLikelihood": { + "@odata.type": "microsoft.graph.selectionLikelihoodInfo" + } + } + }, + "microsoft.graph.phone": { + "value": { + "language": "String", + "number": "String", + "region": "String", + "type": { + "@odata.type": "microsoft.graph.phoneType" + } + } + }, + "microsoft.graph.website": { + "value": { + "address": "String", + "displayName": "String", + "type": { + "@odata.type": "microsoft.graph.websiteType" + } + } + }, + "microsoft.graph.personType": { + "value": { + "class": "String", + "subclass": "String" + } + }, + "microsoft.graph.identitySet": { + "value": { + "application": { + "@odata.type": "microsoft.graph.identity" + }, + "device": { + "@odata.type": "microsoft.graph.identity" + }, + "user": { + "@odata.type": "microsoft.graph.identity" + } + } + }, + "microsoft.graph.identity": { + "value": { + "displayName": "String", + "id": "String" + } + }, + "microsoft.graph.itemReference": { + "value": { + "driveId": "String", + "driveType": "String", + "id": "String", + "name": "String", + "path": "String", + "shareId": "String", + "sharepointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + } + } + }, + "microsoft.graph.sharepointIds": { + "value": { + "listId": "String", + "listItemId": "String", + "listItemUniqueId": "String", + "siteId": "String", + "siteUrl": "String", + "webId": "String" + } + }, + "microsoft.graph.baseItemVersion": { + "value": { + "lastModifiedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "publication": { + "@odata.type": "microsoft.graph.publicationFacet" + } + } + }, + "microsoft.graph.publicationFacet": { + "value": { + "level": "String", + "versionId": "String" + } + }, + "microsoft.graph.columnDefinition": { + "value": { + "boolean": { + "@odata.type": "microsoft.graph.booleanColumn" + }, + "calculated": { + "@odata.type": "microsoft.graph.calculatedColumn" + }, + "choice": { + "@odata.type": "microsoft.graph.choiceColumn" + }, + "columnGroup": "String", + "currency": { + "@odata.type": "microsoft.graph.currencyColumn" + }, + "dateTime": { + "@odata.type": "microsoft.graph.dateTimeColumn" + }, + "defaultValue": { + "@odata.type": "microsoft.graph.defaultColumnValue" + }, + "description": "String", + "displayName": "String", + "enforceUniqueValues": true, + "hidden": true, + "indexed": true, + "lookup": { + "@odata.type": "microsoft.graph.lookupColumn" + }, + "name": "String", + "number": { + "@odata.type": "microsoft.graph.numberColumn" + }, + "personOrGroup": { + "@odata.type": "microsoft.graph.personOrGroupColumn" + }, + "readOnly": true, + "required": true, + "text": { + "@odata.type": "microsoft.graph.textColumn" + } + } + }, + "microsoft.graph.booleanColumn": {}, + "microsoft.graph.calculatedColumn": { + "value": { + "format": "String", + "formula": "String", + "outputType": "String" + } + }, + "microsoft.graph.choiceColumn": { + "value": { + "allowTextEntry": true, + "choices": [ + "String" + ], + "displayAs": "String" + } + }, + "microsoft.graph.currencyColumn": { + "value": { + "locale": "String" + } + }, + "microsoft.graph.dateTimeColumn": { + "value": { + "displayAs": "String", + "format": "String" + } + }, + "microsoft.graph.defaultColumnValue": { + "value": { + "formula": "String", + "value": "String" + } + }, + "microsoft.graph.lookupColumn": { + "value": { + "allowMultipleValues": true, + "allowUnlimitedLength": true, + "columnName": "String", + "listId": "String", + "primaryLookupColumnId": "String" + } + }, + "microsoft.graph.numberColumn": { + "value": { + "decimalPlaces": "String", + "displayAs": "String", + "maximum": 0, + "minimum": 0 + } + }, + "microsoft.graph.personOrGroupColumn": { + "value": { + "allowMultipleSelection": true, + "chooseFromType": "String", + "displayAs": "String" + } + }, + "microsoft.graph.textColumn": { + "value": { + "allowMultipleLines": true, + "appendChangesToExistingText": true, + "linesForEditing": 0, + "maxLength": 0, + "textType": "String" + } + }, + "microsoft.graph.columnLink": { + "value": { + "name": "String" + } + }, + "microsoft.graph.contentType": { + "value": { + "columnLinks": [ + { + "@odata.type": "microsoft.graph.columnLink" + } + ], + "description": "String", + "group": "String", + "hidden": true, + "inheritedFrom": { + "@odata.type": "microsoft.graph.itemReference" + }, + "name": "String", + "order": { + "@odata.type": "microsoft.graph.contentTypeOrder" + }, + "parentId": "String", + "readOnly": true, + "sealed": true + } + }, + "microsoft.graph.contentTypeOrder": { + "value": { + "default": true, + "position": 0 + } + }, + "microsoft.graph.quota": { + "value": { + "deleted": 0, + "remaining": 0, + "state": "String", + "total": 0, + "used": 0 + } + }, + "microsoft.graph.systemFacet": {}, + "microsoft.graph.driveItem": { + "value": { + "audio": { + "@odata.type": "microsoft.graph.audio" + }, + "children": [ + { + "@odata.type": "microsoft.graph.driveItem" + } + ], + "content": "Stream", + "cTag": "String", + "deleted": { + "@odata.type": "microsoft.graph.deleted" + }, + "file": { + "@odata.type": "microsoft.graph.file" + }, + "fileSystemInfo": { + "@odata.type": "microsoft.graph.fileSystemInfo" + }, + "folder": { + "@odata.type": "microsoft.graph.folder" + }, + "image": { + "@odata.type": "microsoft.graph.image" + }, + "listItem": { + "@odata.type": "microsoft.graph.listItem" + }, + "location": { + "@odata.type": "microsoft.graph.geoCoordinates" + }, + "package": { + "@odata.type": "microsoft.graph.package" + }, + "permissions": [ + { + "@odata.type": "microsoft.graph.permission" + } + ], + "photo": { + "@odata.type": "microsoft.graph.photo" + }, + "publication": { + "@odata.type": "microsoft.graph.publicationFacet" + }, + "remoteItem": { + "@odata.type": "microsoft.graph.remoteItem" + }, + "root": { + "@odata.type": "microsoft.graph.root" + }, + "searchResult": { + "@odata.type": "microsoft.graph.searchResult" + }, + "shared": { + "@odata.type": "microsoft.graph.shared" + }, + "sharepointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + }, + "size": 0, + "specialFolder": { + "@odata.type": "microsoft.graph.specialFolder" + }, + "thumbnails": [ + { + "@odata.type": "microsoft.graph.thumbnailSet" + } + ], + "versions": [ + { + "@odata.type": "microsoft.graph.driveItemVersion" + } + ], + "video": { + "@odata.type": "microsoft.graph.video" + }, + "webDavUrl": "String", + "workbook": { + "@odata.type": "microsoft.graph.workbook" + } + } + }, + "microsoft.graph.list": { + "value": { + "columns": [ + { + "@odata.type": "microsoft.graph.columnDefinition" + } + ], + "contentTypes": [ + { + "@odata.type": "microsoft.graph.contentType" + } + ], + "displayName": "String", + "drive": { + "@odata.type": "microsoft.graph.drive" + }, + "items": [ + { + "@odata.type": "microsoft.graph.listItem" + } + ], + "list": { + "@odata.type": "microsoft.graph.listInfo" + }, + "sharepointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + }, + "system": { + "@odata.type": "microsoft.graph.systemFacet" + } + } + }, + "microsoft.graph.audio": { + "value": { + "album": "String", + "albumArtist": "String", + "artist": "String", + "bitrate": 0, + "composers": "String", + "copyright": "String", + "disc": 0, + "discCount": 0, + "duration": 0, + "genre": "String", + "hasDrm": true, + "isVariableBitrate": true, + "title": "String", + "track": 0, + "trackCount": 0, + "year": 0 + } + }, + "microsoft.graph.deleted": { + "value": { + "state": "String" + } + }, + "microsoft.graph.file": { + "value": { + "hashes": { + "@odata.type": "microsoft.graph.hashes" + }, + "mimeType": "String", + "processingMetadata": true + } + }, + "microsoft.graph.hashes": { + "value": { + "crc32Hash": "String", + "quickXorHash": "String", + "sha1Hash": "String" + } + }, + "microsoft.graph.fileSystemInfo": { + "value": { + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastAccessedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.folder": { + "value": { + "childCount": 0, + "view": { + "@odata.type": "microsoft.graph.folderView" + } + } + }, + "microsoft.graph.folderView": { + "value": { + "sortBy": "String", + "sortOrder": "String", + "viewType": "String" + } + }, + "microsoft.graph.image": { + "value": { + "height": 0, + "width": 0 + } + }, + "microsoft.graph.geoCoordinates": { + "value": { + "altitude": 0, + "latitude": 0, + "longitude": 0 + } + }, + "microsoft.graph.package": { + "value": { + "type": "String" + } + }, + "microsoft.graph.photo": { + "value": { + "cameraMake": "String", + "cameraModel": "String", + "exposureDenominator": 0, + "exposureNumerator": 0, + "fNumber": 0, + "focalLength": 0, + "iso": 0, + "takenDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.remoteItem": { + "value": { + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "file": { + "@odata.type": "microsoft.graph.file" + }, + "fileSystemInfo": { + "@odata.type": "microsoft.graph.fileSystemInfo" + }, + "folder": { + "@odata.type": "microsoft.graph.folder" + }, + "id": "String", + "lastModifiedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "name": "String", + "package": { + "@odata.type": "microsoft.graph.package" + }, + "parentReference": { + "@odata.type": "microsoft.graph.itemReference" + }, + "shared": { + "@odata.type": "microsoft.graph.shared" + }, + "sharepointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + }, + "size": 0, + "specialFolder": { + "@odata.type": "microsoft.graph.specialFolder" + }, + "webDavUrl": "String", + "webUrl": "String" + } + }, + "microsoft.graph.shared": { + "value": { + "owner": { + "@odata.type": "microsoft.graph.identitySet" + }, + "scope": "String", + "sharedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "sharedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.specialFolder": { + "value": { + "name": "String" + } + }, + "microsoft.graph.root": {}, + "microsoft.graph.searchResult": { + "value": { + "onClickTelemetryUrl": "String" + } + }, + "microsoft.graph.video": { + "value": { + "audioBitsPerSample": 0, + "audioChannels": 0, + "audioFormat": "String", + "audioSamplesPerSecond": 0, + "bitrate": 0, + "duration": 0, + "fourCC": "String", + "frameRate": 0, + "height": 0, + "width": 0 + } + }, + "microsoft.graph.listItem": { + "value": { + "contentType": { + "@odata.type": "microsoft.graph.contentTypeInfo" + }, + "driveItem": { + "@odata.type": "microsoft.graph.driveItem" + }, + "fields": { + "@odata.type": "microsoft.graph.fieldValueSet" + }, + "sharepointIds": { + "@odata.type": "microsoft.graph.sharepointIds" + }, + "versions": [ + { + "@odata.type": "microsoft.graph.listItemVersion" + } + ] + } + }, + "microsoft.graph.permission": { + "value": { + "grantedTo": { + "@odata.type": "microsoft.graph.identitySet" + }, + "inheritedFrom": { + "@odata.type": "microsoft.graph.itemReference" + }, + "invitation": { + "@odata.type": "microsoft.graph.sharingInvitation" + }, + "link": { + "@odata.type": "microsoft.graph.sharingLink" + }, + "roles": [ + "String" + ], + "shareId": "String" + } + }, + "microsoft.graph.thumbnailSet": { + "value": { + "large": { + "@odata.type": "microsoft.graph.thumbnail" + }, + "medium": { + "@odata.type": "microsoft.graph.thumbnail" + }, + "small": { + "@odata.type": "microsoft.graph.thumbnail" + }, + "source": { + "@odata.type": "microsoft.graph.thumbnail" + } + } + }, + "microsoft.graph.driveItemVersion": { + "value": { + "content": "Stream", + "size": 0 + } + }, + "microsoft.graph.workbook": { + "value": { + "application": { + "@odata.type": "Application" + }, + "functions": { + "@odata.type": "microsoft.graph.workbookFunctions" + }, + "names": [ + { + "@odata.type": "NamedItem" + } + ], + "tables": [ + { + "@odata.type": "Table" + } + ], + "worksheets": [ + { + "@odata.type": "Worksheet" + } + ] + } + }, + "microsoft.graph.fieldValueSet": {}, + "microsoft.graph.listInfo": { + "value": { + "contentTypesEnabled": true, + "hidden": true, + "template": "String" + } + }, + "microsoft.graph.contentTypeInfo": { + "value": { + "id": "String" + } + }, + "microsoft.graph.listItemVersion": { + "value": { + "fields": { + "@odata.type": "microsoft.graph.fieldValueSet" + } + } + }, + "microsoft.graph.sharingInvitation": { + "value": { + "email": "String", + "invitedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "redeemedBy": "String", + "signInRequired": true + } + }, + "microsoft.graph.sharingLink": { + "value": { + "application": { + "@odata.type": "microsoft.graph.identity" + }, + "scope": "String", + "type": "String", + "webUrl": "String" + } + }, + "microsoft.graph.sharedDriveItem": { + "value": { + "driveItem": { + "@odata.type": "microsoft.graph.driveItem" + }, + "items": [ + { + "@odata.type": "microsoft.graph.driveItem" + } + ], + "list": { + "@odata.type": "microsoft.graph.list" + }, + "listItem": { + "@odata.type": "microsoft.graph.listItem" + }, + "owner": { + "@odata.type": "microsoft.graph.identitySet" + }, + "root": { + "@odata.type": "microsoft.graph.driveItem" + }, + "site": { + "@odata.type": "microsoft.graph.site" + } + } + }, + "microsoft.graph.siteCollection": { + "value": { + "hostname": "String", + "root": { + "@odata.type": "microsoft.graph.root" + } + } + }, + "microsoft.graph.thumbnail": { + "value": { + "content": "Stream", + "height": 0, + "sourceItemId": "String", + "url": "String", + "width": 0 + } + }, + "microsoft.graph.driveItemUploadableProperties": { + "value": { + "description": "String", + "fileSystemInfo": { + "@odata.type": "microsoft.graph.fileSystemInfo" + }, + "name": "String" + } + }, + "microsoft.graph.driveRecipient": { + "value": { + "alias": "String", + "email": "String", + "objectId": "String" + } + }, + "microsoft.graph.itemPreviewInfo": { + "value": { + "getUrl": "String", + "postParameters": "String", + "postUrl": "String" + } + }, + "microsoft.graph.uploadSession": { + "value": { + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "nextExpectedRanges": [ + "String" + ], + "uploadUrl": "String" + } + }, + "Application": { + "value": { + "calculationMode": "String" + } + }, + "NamedItem": { + "value": { + "comment": "String", + "name": "String", + "scope": "String", + "type": "String", + "value": { + "@odata.type": "Json" + }, + "visible": true, + "worksheet": { + "@odata.type": "Worksheet" + } + } + }, + "Table": { + "value": { + "columns": [ + { + "@odata.type": "Column" + } + ], + "highlightFirstColumn": true, + "highlightLastColumn": true, + "name": "String", + "rows": [ + { + "@odata.type": "Row" + } + ], + "showBandedColumns": true, + "showBandedRows": true, + "showFilterButton": true, + "showHeaders": true, + "showTotals": true, + "sort": { + "@odata.type": "TableSort" + }, + "style": "String", + "worksheet": { + "@odata.type": "Worksheet" + } + } + }, + "Worksheet": { + "value": { + "charts": [ + { + "@odata.type": "Chart" + } + ], + "name": "String", + "names": [ + { + "@odata.type": "NamedItem" + } + ], + "pivotTables": [ + { + "@odata.type": "PivotTable" + } + ], + "position": 0, + "protection": { + "@odata.type": "WorksheetProtection" + }, + "tables": [ + { + "@odata.type": "Table" + } + ], + "visibility": "String" + } + }, + "microsoft.graph.workbookFunctions": {}, + "SessionInfo": { + "value": { + "id": "String", + "persistChanges": true + } + }, + "Json": {}, + "Chart": { + "value": { + "axes": { + "@odata.type": "ChartAxes" + }, + "dataLabels": { + "@odata.type": "ChartDataLabels" + }, + "format": { + "@odata.type": "ChartAreaFormat" + }, + "height": 0, + "left": 0, + "legend": { + "@odata.type": "ChartLegend" + }, + "name": "String", + "series": [ + { + "@odata.type": "ChartSeries" + } + ], + "title": { + "@odata.type": "ChartTitle" + }, + "top": 0, + "width": 0, + "worksheet": { + "@odata.type": "Worksheet" + } + } + }, + "ChartAxes": { + "value": { + "categoryAxis": { + "@odata.type": "ChartAxis" + }, + "seriesAxis": { + "@odata.type": "ChartAxis" + }, + "valueAxis": { + "@odata.type": "ChartAxis" + } + } + }, + "ChartDataLabels": { + "value": { + "format": { + "@odata.type": "ChartDataLabelFormat" + }, + "position": "String", + "separator": "String", + "showBubbleSize": true, + "showCategoryName": true, + "showLegendKey": true, + "showPercentage": true, + "showSeriesName": true, + "showValue": true + } + }, + "ChartAreaFormat": { + "value": { + "fill": { + "@odata.type": "ChartFill" + }, + "font": { + "@odata.type": "ChartFont" + } + } + }, + "ChartLegend": { + "value": { + "format": { + "@odata.type": "ChartLegendFormat" + }, + "overlay": true, + "position": "String", + "visible": true + } + }, + "ChartSeries": { + "value": { + "format": { + "@odata.type": "ChartSeriesFormat" + }, + "name": "String", + "points": [ + { + "@odata.type": "ChartPoint" + } + ] + } + }, + "ChartTitle": { + "value": { + "format": { + "@odata.type": "ChartTitleFormat" + }, + "overlay": true, + "text": "String", + "visible": true + } + }, + "ChartFill": {}, + "ChartFont": { + "value": { + "bold": true, + "color": "String", + "italic": true, + "name": "String", + "size": 0, + "underline": "String" + } + }, + "ChartAxis": { + "value": { + "format": { + "@odata.type": "ChartAxisFormat" + }, + "majorGridlines": { + "@odata.type": "ChartGridlines" + }, + "majorUnit": { + "@odata.type": "Json" + }, + "maximum": { + "@odata.type": "Json" + }, + "minimum": { + "@odata.type": "Json" + }, + "minorGridlines": { + "@odata.type": "ChartGridlines" + }, + "minorUnit": { + "@odata.type": "Json" + }, + "title": { + "@odata.type": "ChartAxisTitle" + } + } + }, + "ChartAxisFormat": { + "value": { + "font": { + "@odata.type": "ChartFont" + }, + "line": { + "@odata.type": "ChartLineFormat" + } + } + }, + "ChartGridlines": { + "value": { + "format": { + "@odata.type": "ChartGridlinesFormat" + }, + "visible": true + } + }, + "ChartAxisTitle": { + "value": { + "format": { + "@odata.type": "ChartAxisTitleFormat" + }, + "text": "String", + "visible": true + } + }, + "ChartLineFormat": { + "value": { + "color": "String" + } + }, + "ChartAxisTitleFormat": { + "value": { + "font": { + "@odata.type": "ChartFont" + } + } + }, + "ChartDataLabelFormat": { + "value": { + "fill": { + "@odata.type": "ChartFill" + }, + "font": { + "@odata.type": "ChartFont" + } + } + }, + "ChartGridlinesFormat": { + "value": { + "line": { + "@odata.type": "ChartLineFormat" + } + } + }, + "ChartLegendFormat": { + "value": { + "fill": { + "@odata.type": "ChartFill" + }, + "font": { + "@odata.type": "ChartFont" + } + } + }, + "ChartPoint": { + "value": { + "format": { + "@odata.type": "ChartPointFormat" + }, + "value": { + "@odata.type": "Json" + } + } + }, + "ChartPointFormat": { + "value": { + "fill": { + "@odata.type": "ChartFill" + } + } + }, + "ChartSeriesFormat": { + "value": { + "fill": { + "@odata.type": "ChartFill" + }, + "line": { + "@odata.type": "ChartLineFormat" + } + } + }, + "ChartTitleFormat": { + "value": { + "fill": { + "@odata.type": "ChartFill" + }, + "font": { + "@odata.type": "ChartFont" + } + } + }, + "Filter": { + "value": { + "criteria": { + "@odata.type": "FilterCriteria" + } + } + }, + "FilterCriteria": { + "value": { + "color": "String", + "criterion1": "String", + "criterion2": "String", + "dynamicCriteria": "String", + "filterOn": "String", + "icon": { + "@odata.type": "Icon" + }, + "operator": "String", + "values": { + "@odata.type": "Json" + } + } + }, + "Icon": { + "value": { + "index": 0, + "set": "String" + } + }, + "FormatProtection": { + "value": { + "formulaHidden": true, + "locked": true + } + }, + "microsoft.graph.workbookFunctionResult": { + "value": { + "error": "String", + "value": { + "@odata.type": "Json" + } + } + }, + "PivotTable": { + "value": { + "name": "String", + "worksheet": { + "@odata.type": "Worksheet" + } + } + }, + "Range": { + "value": { + "address": "String", + "addressLocal": "String", + "cellCount": 0, + "columnCount": 0, + "columnHidden": true, + "columnIndex": 0, + "format": { + "@odata.type": "RangeFormat" + }, + "formulas": { + "@odata.type": "Json" + }, + "formulasLocal": { + "@odata.type": "Json" + }, + "formulasR1C1": { + "@odata.type": "Json" + }, + "hidden": true, + "numberFormat": { + "@odata.type": "Json" + }, + "rowCount": 0, + "rowHidden": true, + "rowIndex": 0, + "sort": { + "@odata.type": "RangeSort" + }, + "text": { + "@odata.type": "Json" + }, + "values": { + "@odata.type": "Json" + }, + "valueTypes": { + "@odata.type": "Json" + }, + "worksheet": { + "@odata.type": "Worksheet" + } + } + }, + "RangeFormat": { + "value": { + "borders": [ + { + "@odata.type": "RangeBorder" + } + ], + "columnWidth": 0, + "fill": { + "@odata.type": "RangeFill" + }, + "font": { + "@odata.type": "RangeFont" + }, + "horizontalAlignment": "String", + "protection": { + "@odata.type": "FormatProtection" + }, + "rowHeight": 0, + "verticalAlignment": "String", + "wrapText": true + } + }, + "RangeSort": {}, + "RangeBorder": { + "value": { + "color": "String", + "sideIndex": "String", + "style": "String", + "weight": "String" + } + }, + "RangeFill": { + "value": { + "color": "String" + } + }, + "RangeFont": { + "value": { + "bold": true, + "color": "String", + "italic": true, + "name": "String", + "size": 0, + "underline": "String" + } + }, + "RangeView": { + "value": { + "cellAddresses": { + "@odata.type": "Json" + }, + "columnCount": 0, + "formulas": { + "@odata.type": "Json" + }, + "formulasLocal": { + "@odata.type": "Json" + }, + "formulasR1C1": { + "@odata.type": "Json" + }, + "index": 0, + "numberFormat": { + "@odata.type": "Json" + }, + "rowCount": 0, + "rows": [ + { + "@odata.type": "RangeView" + } + ], + "text": { + "@odata.type": "Json" + }, + "values": { + "@odata.type": "Json" + }, + "valueTypes": { + "@odata.type": "Json" + } + } + }, + "Column": { + "value": { + "filter": { + "@odata.type": "Filter" + }, + "index": 0, + "name": "String", + "values": { + "@odata.type": "Json" + } + } + }, + "Row": { + "value": { + "index": 0, + "values": { + "@odata.type": "Json" + } + } + }, + "TableSort": { + "value": { + "fields": [ + { + "@odata.type": "SortField" + } + ], + "matchCase": true, + "method": "String" + } + }, + "SortField": { + "value": { + "ascending": true, + "color": "String", + "dataOption": "String", + "icon": { + "@odata.type": "Icon" + }, + "key": 0, + "sortOn": "String" + } + }, + "WorksheetProtection": { + "value": { + "options": { + "@odata.type": "WorksheetProtectionOptions" + }, + "protected": true + } + }, + "WorksheetProtectionOptions": { + "value": { + "allowAutoFilter": true, + "allowDeleteColumns": true, + "allowDeleteRows": true, + "allowFormatCells": true, + "allowFormatColumns": true, + "allowFormatRows": true, + "allowInsertColumns": true, + "allowInsertHyperlinks": true, + "allowInsertRows": true, + "allowPivotTables": true, + "allowSort": true + } + }, + "FilterDatetime": { + "value": { + "date": "String", + "specificity": "String" + } + }, + "RangeReference": { + "value": { + "address": "String" + } + }, + "microsoft.graph.subscription": { + "value": { + "applicationId": "String", + "changeType": "String", + "clientState": "String", + "creatorId": "String", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notificationUrl": "String", + "resource": "String" + } + }, + "microsoft.graph.invitation": { + "value": { + "invitedUser": { + "@odata.type": "microsoft.graph.user" + }, + "invitedUserDisplayName": "String", + "invitedUserEmailAddress": "String", + "invitedUserMessageInfo": { + "@odata.type": "microsoft.graph.invitedUserMessageInfo" + }, + "invitedUserType": "String", + "inviteRedeemUrl": "String", + "inviteRedirectUrl": "String", + "sendInvitationMessage": true, + "status": "String" + } + }, + "microsoft.graph.invitedUserMessageInfo": { + "value": { + "ccRecipients": [ + { + "@odata.type": "microsoft.graph.recipient" + } + ], + "customizedMessageBody": "String", + "messageLanguage": "String" + } + }, + "microsoft.graph.plannerTask": { + "value": { + "activeChecklistItemCount": 0, + "appliedCategories": { + "@odata.type": "microsoft.graph.plannerAppliedCategories" + }, + "assignedToTaskBoardFormat": { + "@odata.type": "microsoft.graph.plannerAssignedToTaskBoardTaskFormat" + }, + "assigneePriority": "String", + "assignments": { + "@odata.type": "microsoft.graph.plannerAssignments" + }, + "bucketId": "String", + "bucketTaskBoardFormat": { + "@odata.type": "microsoft.graph.plannerBucketTaskBoardTaskFormat" + }, + "checklistItemCount": 0, + "completedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "completedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "conversationThreadId": "String", + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "details": { + "@odata.type": "microsoft.graph.plannerTaskDetails" + }, + "dueDateTime": "0001-01-01T00:00:00.0000000+00:00", + "hasDescription": true, + "orderHint": "String", + "percentComplete": 0, + "planId": "String", + "previewType": { + "@odata.type": "microsoft.graph.plannerPreviewType" + }, + "progressTaskBoardFormat": { + "@odata.type": "microsoft.graph.plannerProgressTaskBoardTaskFormat" + }, + "referenceCount": 0, + "startDateTime": "0001-01-01T00:00:00.0000000+00:00", + "title": "String" + } + }, + "microsoft.graph.plannerPlan": { + "value": { + "buckets": [ + { + "@odata.type": "microsoft.graph.plannerBucket" + } + ], + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "details": { + "@odata.type": "microsoft.graph.plannerPlanDetails" + }, + "owner": "String", + "tasks": [ + { + "@odata.type": "microsoft.graph.plannerTask" + } + ], + "title": "String" + } + }, + "microsoft.graph.planner": { + "value": { + "buckets": [ + { + "@odata.type": "microsoft.graph.plannerBucket" + } + ], + "plans": [ + { + "@odata.type": "microsoft.graph.plannerPlan" + } + ], + "tasks": [ + { + "@odata.type": "microsoft.graph.plannerTask" + } + ] + } + }, + "microsoft.graph.plannerBucket": { + "value": { + "name": "String", + "orderHint": "String", + "planId": "String", + "tasks": [ + { + "@odata.type": "microsoft.graph.plannerTask" + } + ] + } + }, + "microsoft.graph.plannerAppliedCategories": {}, + "microsoft.graph.plannerAssignments": {}, + "microsoft.graph.plannerTaskDetails": { + "value": { + "checklist": { + "@odata.type": "microsoft.graph.plannerChecklistItems" + }, + "description": "String", + "previewType": { + "@odata.type": "microsoft.graph.plannerPreviewType" + }, + "references": { + "@odata.type": "microsoft.graph.plannerExternalReferences" + } + } + }, + "microsoft.graph.plannerAssignedToTaskBoardTaskFormat": { + "value": { + "orderHintsByAssignee": { + "@odata.type": "microsoft.graph.plannerOrderHintsByAssignee" + }, + "unassignedOrderHint": "String" + } + }, + "microsoft.graph.plannerProgressTaskBoardTaskFormat": { + "value": { + "orderHint": "String" + } + }, + "microsoft.graph.plannerBucketTaskBoardTaskFormat": { + "value": { + "orderHint": "String" + } + }, + "microsoft.graph.plannerPlanDetails": { + "value": { + "categoryDescriptions": { + "@odata.type": "microsoft.graph.plannerCategoryDescriptions" + }, + "sharedWith": { + "@odata.type": "microsoft.graph.plannerUserIds" + } + } + }, + "microsoft.graph.plannerExternalReference": { + "value": { + "alias": "String", + "lastModifiedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "previewPriority": "String", + "type": "String" + } + }, + "microsoft.graph.plannerChecklistItem": { + "value": { + "isChecked": true, + "lastModifiedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "orderHint": "String", + "title": "String" + } + }, + "microsoft.graph.plannerAssignment": { + "value": { + "assignedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "assignedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "orderHint": "String" + } + }, + "microsoft.graph.plannerExternalReferences": {}, + "microsoft.graph.plannerChecklistItems": {}, + "microsoft.graph.plannerOrderHintsByAssignee": {}, + "microsoft.graph.plannerUserIds": {}, + "microsoft.graph.plannerCategoryDescriptions": { + "value": { + "category1": "String", + "category2": "String", + "category3": "String", + "category4": "String", + "category5": "String", + "category6": "String" + } + }, + "microsoft.graph.onenoteEntityBaseModel": { + "value": { + "self": "String" + } + }, + "microsoft.graph.onenoteEntitySchemaObjectModel": { + "value": { + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.onenoteEntityHierarchyModel": { + "value": { + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "displayName": "String", + "lastModifiedBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.notebook": { + "value": { + "isDefault": true, + "isShared": true, + "links": { + "@odata.type": "microsoft.graph.notebookLinks" + }, + "sectionGroups": [ + { + "@odata.type": "microsoft.graph.sectionGroup" + } + ], + "sectionGroupsUrl": "String", + "sections": [ + { + "@odata.type": "microsoft.graph.onenoteSection" + } + ], + "sectionsUrl": "String", + "userRole": { + "@odata.type": "microsoft.graph.onenoteUserRole" + } + } + }, + "microsoft.graph.onenoteSection": { + "value": { + "isDefault": true, + "links": { + "@odata.type": "microsoft.graph.sectionLinks" + }, + "pages": [ + { + "@odata.type": "microsoft.graph.onenotePage" + } + ], + "pagesUrl": "String", + "parentNotebook": { + "@odata.type": "microsoft.graph.notebook" + }, + "parentSectionGroup": { + "@odata.type": "microsoft.graph.sectionGroup" + } + } + }, + "microsoft.graph.sectionGroup": { + "value": { + "parentNotebook": { + "@odata.type": "microsoft.graph.notebook" + }, + "parentSectionGroup": { + "@odata.type": "microsoft.graph.sectionGroup" + }, + "sectionGroups": [ + { + "@odata.type": "microsoft.graph.sectionGroup" + } + ], + "sectionGroupsUrl": "String", + "sections": [ + { + "@odata.type": "microsoft.graph.onenoteSection" + } + ], + "sectionsUrl": "String" + } + }, + "microsoft.graph.onenotePage": { + "value": { + "content": "Stream", + "contentUrl": "String", + "createdByAppId": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "level": 0, + "links": { + "@odata.type": "microsoft.graph.pageLinks" + }, + "order": 0, + "parentNotebook": { + "@odata.type": "microsoft.graph.notebook" + }, + "parentSection": { + "@odata.type": "microsoft.graph.onenoteSection" + }, + "title": "String", + "userTags": [ + "String" + ] + } + }, + "microsoft.graph.onenoteResource": { + "value": { + "content": "Stream", + "contentUrl": "String" + } + }, + "microsoft.graph.operation": { + "value": { + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastActionDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.operationStatus" + } + } + }, + "microsoft.graph.onenoteOperation": { + "value": { + "error": { + "@odata.type": "microsoft.graph.onenoteOperationError" + }, + "percentComplete": "String", + "resourceId": "String", + "resourceLocation": "String" + } + }, + "microsoft.graph.notebookLinks": { + "value": { + "oneNoteClientUrl": { + "@odata.type": "microsoft.graph.externalLink" + }, + "oneNoteWebUrl": { + "@odata.type": "microsoft.graph.externalLink" + } + } + }, + "microsoft.graph.externalLink": { + "value": { + "href": "String" + } + }, + "microsoft.graph.sectionLinks": { + "value": { + "oneNoteClientUrl": { + "@odata.type": "microsoft.graph.externalLink" + }, + "oneNoteWebUrl": { + "@odata.type": "microsoft.graph.externalLink" + } + } + }, + "microsoft.graph.pageLinks": { + "value": { + "oneNoteClientUrl": { + "@odata.type": "microsoft.graph.externalLink" + }, + "oneNoteWebUrl": { + "@odata.type": "microsoft.graph.externalLink" + } + } + }, + "microsoft.graph.onenoteOperationError": { + "value": { + "code": "String", + "message": "String" + } + }, + "microsoft.graph.diagnostic": { + "value": { + "message": "String", + "url": "String" + } + }, + "microsoft.graph.onenotePatchContentCommand": { + "value": { + "action": { + "@odata.type": "microsoft.graph.onenotePatchActionType" + }, + "content": "String", + "position": { + "@odata.type": "microsoft.graph.onenotePatchInsertPosition" + }, + "target": "String" + } + }, + "microsoft.graph.onenotePagePreview": { + "value": { + "links": { + "@odata.type": "microsoft.graph.onenotePagePreviewLinks" + }, + "previewText": "String" + } + }, + "microsoft.graph.onenotePagePreviewLinks": { + "value": { + "previewImageUrl": { + "@odata.type": "microsoft.graph.externalLink" + } + } + }, + "microsoft.graph.recentNotebook": { + "value": { + "displayName": "String", + "lastAccessedTime": "0001-01-01T00:00:00.0000000+00:00", + "links": { + "@odata.type": "microsoft.graph.recentNotebookLinks" + }, + "sourceService": { + "@odata.type": "microsoft.graph.onenoteSourceService" + } + } + }, + "microsoft.graph.recentNotebookLinks": { + "value": { + "oneNoteClientUrl": { + "@odata.type": "microsoft.graph.externalLink" + }, + "oneNoteWebUrl": { + "@odata.type": "microsoft.graph.externalLink" + } + } + }, + "microsoft.graph.reportRoot": {}, + "microsoft.graph.report": { + "value": { + "content": "Stream" + } + }, + "microsoft.graph.administrativeUnit": {}, + "microsoft.graph.educationRoot": { + "value": { + "classes": [ + { + "@odata.type": "microsoft.graph.educationClass" + } + ], + "me": { + "@odata.type": "microsoft.graph.educationUser" + }, + "schools": [ + { + "@odata.type": "microsoft.graph.educationSchool" + } + ], + "users": [ + { + "@odata.type": "microsoft.graph.educationUser" + } + ] + } + }, + "microsoft.graph.educationClass": { + "value": { + "classCode": "String", + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "description": "String", + "displayName": "String", + "externalId": "String", + "externalName": "String", + "externalSource": { + "@odata.type": "microsoft.graph.educationExternalSource" + }, + "group": { + "@odata.type": "microsoft.graph.group" + }, + "mailNickname": "String", + "members": [ + { + "@odata.type": "microsoft.graph.educationUser" + } + ], + "schools": [ + { + "@odata.type": "microsoft.graph.educationSchool" + } + ], + "teachers": [ + { + "@odata.type": "microsoft.graph.educationUser" + } + ], + "term": { + "@odata.type": "microsoft.graph.educationTerm" + } + } + }, + "microsoft.graph.educationOrganization": { + "value": { + "description": "String", + "displayName": "String", + "externalSource": { + "@odata.type": "microsoft.graph.educationExternalSource" + } + } + }, + "microsoft.graph.educationSchool": { + "value": { + "address": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "classes": [ + { + "@odata.type": "microsoft.graph.educationClass" + } + ], + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "externalId": "String", + "externalPrincipalId": "String", + "fax": "String", + "highestGrade": "String", + "lowestGrade": "String", + "phone": "String", + "principalEmail": "String", + "principalName": "String", + "schoolNumber": "String", + "users": [ + { + "@odata.type": "microsoft.graph.educationUser" + } + ] + } + }, + "microsoft.graph.educationUser": { + "value": { + "accountEnabled": true, + "assignedLicenses": [ + { + "@odata.type": "microsoft.graph.assignedLicense" + } + ], + "assignedPlans": [ + { + "@odata.type": "microsoft.graph.assignedPlan" + } + ], + "businessPhones": [ + "String" + ], + "classes": [ + { + "@odata.type": "microsoft.graph.educationClass" + } + ], + "createdBy": { + "@odata.type": "microsoft.graph.identitySet" + }, + "department": "String", + "displayName": "String", + "externalSource": { + "@odata.type": "microsoft.graph.educationExternalSource" + }, + "givenName": "String", + "mail": "String", + "mailingAddress": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "mailNickname": "String", + "middleName": "String", + "mobilePhone": "String", + "officeLocation": "String", + "passwordPolicies": "String", + "passwordProfile": { + "@odata.type": "microsoft.graph.passwordProfile" + }, + "preferredLanguage": "String", + "primaryRole": { + "@odata.type": "microsoft.graph.educationUserRole" + }, + "provisionedPlans": [ + { + "@odata.type": "microsoft.graph.provisionedPlan" + } + ], + "refreshTokensValidFromDateTime": "0001-01-01T00:00:00.0000000+00:00", + "relatedContacts": [ + { + "@odata.type": "microsoft.graph.educationRelatedContact" + } + ], + "residenceAddress": { + "@odata.type": "microsoft.graph.physicalAddress" + }, + "schools": [ + { + "@odata.type": "microsoft.graph.educationSchool" + } + ], + "showInAddressList": true, + "student": { + "@odata.type": "microsoft.graph.educationStudent" + }, + "surname": "String", + "teacher": { + "@odata.type": "microsoft.graph.educationTeacher" + }, + "usageLocation": "String", + "user": { + "@odata.type": "microsoft.graph.user" + }, + "userPrincipalName": "String", + "userType": "String" + } + }, + "microsoft.graph.educationStudent": { + "value": { + "birthDate": "0001-01-01T00:00:00.0000000", + "externalId": "String", + "gender": { + "@odata.type": "microsoft.graph.educationGender" + }, + "grade": "String", + "graduationYear": "String", + "studentNumber": "String" + } + }, + "microsoft.graph.educationRelatedContact": { + "value": { + "accessConsent": true, + "displayName": "String", + "emailAddress": "String", + "id": "String", + "mobilePhone": "String", + "relationship": { + "@odata.type": "microsoft.graph.educationContactRelationship" + } + } + }, + "microsoft.graph.educationTeacher": { + "value": { + "externalId": "String", + "teacherNumber": "String" + } + }, + "microsoft.graph.educationTerm": { + "value": { + "displayName": "String", + "endDate": "0001-01-01T00:00:00.0000000", + "externalId": "String", + "startDate": "0001-01-01T00:00:00.0000000" + } + }, + "microsoft.graph.deviceAppManagement": { + "value": { + "androidManagedAppProtections": [ + { + "@odata.type": "microsoft.graph.androidManagedAppProtection" + } + ], + "defaultManagedAppProtections": [ + { + "@odata.type": "microsoft.graph.defaultManagedAppProtection" + } + ], + "iosManagedAppProtections": [ + { + "@odata.type": "microsoft.graph.iosManagedAppProtection" + } + ], + "isEnabledForMicrosoftStoreForBusiness": true, + "managedAppPolicies": [ + { + "@odata.type": "microsoft.graph.managedAppPolicy" + } + ], + "managedAppRegistrations": [ + { + "@odata.type": "microsoft.graph.managedAppRegistration" + } + ], + "managedAppStatuses": [ + { + "@odata.type": "microsoft.graph.managedAppStatus" + } + ], + "managedEBooks": [ + { + "@odata.type": "microsoft.graph.managedEBook" + } + ], + "mdmWindowsInformationProtectionPolicies": [ + { + "@odata.type": "microsoft.graph.mdmWindowsInformationProtectionPolicy" + } + ], + "microsoftStoreForBusinessLanguage": "String", + "microsoftStoreForBusinessLastCompletedApplicationSyncTime": "0001-01-01T00:00:00.0000000+00:00", + "microsoftStoreForBusinessLastSuccessfulSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "mobileAppCategories": [ + { + "@odata.type": "microsoft.graph.mobileAppCategory" + } + ], + "mobileAppConfigurations": [ + { + "@odata.type": "microsoft.graph.managedDeviceMobileAppConfiguration" + } + ], + "mobileApps": [ + { + "@odata.type": "microsoft.graph.mobileApp" + } + ], + "targetedManagedAppConfigurations": [ + { + "@odata.type": "microsoft.graph.targetedManagedAppConfiguration" + } + ], + "vppTokens": [ + { + "@odata.type": "microsoft.graph.vppToken" + } + ], + "windowsInformationProtectionPolicies": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionPolicy" + } + ] + } + }, + "microsoft.graph.mobileApp": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.mobileAppAssignment" + } + ], + "categories": [ + { + "@odata.type": "microsoft.graph.mobileAppCategory" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "developer": "String", + "displayName": "String", + "informationUrl": "String", + "isFeatured": true, + "largeIcon": { + "@odata.type": "microsoft.graph.mimeContent" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notes": "String", + "owner": "String", + "privacyInformationUrl": "String", + "publisher": "String", + "publishingState": { + "@odata.type": "microsoft.graph.mobileAppPublishingState" + } + } + }, + "microsoft.graph.mobileAppCategory": { + "value": { + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.managedDeviceMobileAppConfiguration": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.managedDeviceMobileAppConfigurationAssignment" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "deviceStatuses": [ + { + "@odata.type": "microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus" + } + ], + "deviceStatusSummary": { + "@odata.type": "microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary" + }, + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "targetedMobileApps": [ + "String" + ], + "userStatuses": [ + { + "@odata.type": "microsoft.graph.managedDeviceMobileAppConfigurationUserStatus" + } + ], + "userStatusSummary": { + "@odata.type": "microsoft.graph.managedDeviceMobileAppConfigurationUserSummary" + }, + "version": 0 + } + }, + "microsoft.graph.vppToken": { + "value": { + "appleId": "String", + "automaticallyUpdateApps": true, + "countryOrRegion": "String", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastSyncStatus": { + "@odata.type": "microsoft.graph.vppTokenSyncStatus" + }, + "organizationName": "String", + "state": { + "@odata.type": "microsoft.graph.vppTokenState" + }, + "token": "String", + "vppTokenAccountType": { + "@odata.type": "microsoft.graph.vppTokenAccountType" + } + } + }, + "microsoft.graph.managedAppPolicy": { + "value": { + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "version": "String" + } + }, + "microsoft.graph.managedAppProtection": { + "value": { + "allowedDataStorageLocations": [ + { + "@odata.type": "microsoft.graph.managedAppDataStorageLocation" + } + ], + "allowedInboundDataTransferSources": { + "@odata.type": "microsoft.graph.managedAppDataTransferLevel" + }, + "allowedOutboundClipboardSharingLevel": { + "@odata.type": "microsoft.graph.managedAppClipboardSharingLevel" + }, + "allowedOutboundDataTransferDestinations": { + "@odata.type": "microsoft.graph.managedAppDataTransferLevel" + }, + "contactSyncBlocked": true, + "dataBackupBlocked": true, + "deviceComplianceRequired": true, + "disableAppPinIfDevicePinIsSet": true, + "fingerprintBlocked": true, + "managedBrowserToOpenLinksRequired": true, + "maximumPinRetries": 0, + "minimumPinLength": 0, + "minimumRequiredAppVersion": "String", + "minimumRequiredOsVersion": "String", + "minimumWarningAppVersion": "String", + "minimumWarningOsVersion": "String", + "organizationalCredentialsRequired": true, + "periodBeforePinReset": "Duration", + "periodOfflineBeforeAccessCheck": "Duration", + "periodOfflineBeforeWipeIsEnforced": "Duration", + "periodOnlineBeforeAccessCheck": "Duration", + "pinCharacterSet": { + "@odata.type": "microsoft.graph.managedAppPinCharacterSet" + }, + "pinRequired": true, + "printBlocked": true, + "saveAsBlocked": true, + "simplePinBlocked": true + } + }, + "microsoft.graph.targetedManagedAppProtection": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "isAssigned": true + } + }, + "microsoft.graph.iosManagedAppProtection": { + "value": { + "appDataEncryptionType": { + "@odata.type": "microsoft.graph.managedAppDataEncryptionType" + }, + "apps": [ + { + "@odata.type": "microsoft.graph.managedMobileApp" + } + ], + "deployedAppCount": 0, + "deploymentSummary": { + "@odata.type": "microsoft.graph.managedAppPolicyDeploymentSummary" + }, + "faceIdBlocked": true, + "minimumRequiredSdkVersion": "String" + } + }, + "microsoft.graph.androidManagedAppProtection": { + "value": { + "apps": [ + { + "@odata.type": "microsoft.graph.managedMobileApp" + } + ], + "deployedAppCount": 0, + "deploymentSummary": { + "@odata.type": "microsoft.graph.managedAppPolicyDeploymentSummary" + }, + "disableAppEncryptionIfDeviceEncryptionIsEnabled": true, + "encryptAppData": true, + "minimumRequiredPatchVersion": "String", + "minimumWarningPatchVersion": "String", + "screenCaptureBlocked": true + } + }, + "microsoft.graph.defaultManagedAppProtection": { + "value": { + "appDataEncryptionType": { + "@odata.type": "microsoft.graph.managedAppDataEncryptionType" + }, + "apps": [ + { + "@odata.type": "microsoft.graph.managedMobileApp" + } + ], + "customSettings": [ + { + "@odata.type": "microsoft.graph.keyValuePair" + } + ], + "deployedAppCount": 0, + "deploymentSummary": { + "@odata.type": "microsoft.graph.managedAppPolicyDeploymentSummary" + }, + "disableAppEncryptionIfDeviceEncryptionIsEnabled": true, + "encryptAppData": true, + "faceIdBlocked": true, + "minimumRequiredPatchVersion": "String", + "minimumRequiredSdkVersion": "String", + "minimumWarningPatchVersion": "String", + "screenCaptureBlocked": true + } + }, + "microsoft.graph.managedAppConfiguration": { + "value": { + "customSettings": [ + { + "@odata.type": "microsoft.graph.keyValuePair" + } + ] + } + }, + "microsoft.graph.targetedManagedAppConfiguration": { + "value": { + "apps": [ + { + "@odata.type": "microsoft.graph.managedMobileApp" + } + ], + "assignments": [ + { + "@odata.type": "microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "deployedAppCount": 0, + "deploymentSummary": { + "@odata.type": "microsoft.graph.managedAppPolicyDeploymentSummary" + }, + "isAssigned": true + } + }, + "microsoft.graph.windowsInformationProtection": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.targetedManagedAppPolicyAssignment" + } + ], + "azureRightsManagementServicesAllowed": true, + "dataRecoveryCertificate": { + "@odata.type": "microsoft.graph.windowsInformationProtectionDataRecoveryCertificate" + }, + "enforcementLevel": { + "@odata.type": "microsoft.graph.windowsInformationProtectionEnforcementLevel" + }, + "enterpriseDomain": "String", + "enterpriseInternalProxyServers": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "enterpriseIPRanges": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionIPRangeCollection" + } + ], + "enterpriseIPRangesAreAuthoritative": true, + "enterpriseNetworkDomainNames": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "enterpriseProtectedDomainNames": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "enterpriseProxiedDomains": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionProxiedDomainCollection" + } + ], + "enterpriseProxyServers": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "enterpriseProxyServersAreAuthoritative": true, + "exemptAppLockerFiles": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionAppLockerFile" + } + ], + "exemptApps": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionApp" + } + ], + "iconsVisible": true, + "indexingEncryptedStoresOrItemsBlocked": true, + "isAssigned": true, + "neutralDomainResources": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionResourceCollection" + } + ], + "protectedAppLockerFiles": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionAppLockerFile" + } + ], + "protectedApps": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionApp" + } + ], + "protectionUnderLockConfigRequired": true, + "revokeOnUnenrollDisabled": true, + "rightsManagementServicesTemplateId": "00000000-0000-0000-0000-000000000000", + "smbAutoEncryptedFileExtensions": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionResourceCollection" + } + ] + } + }, + "microsoft.graph.mdmWindowsInformationProtectionPolicy": {}, + "microsoft.graph.windowsInformationProtectionPolicy": { + "value": { + "daysWithoutContactBeforeUnenroll": 0, + "mdmEnrollmentUrl": "String", + "minutesOfInactivityBeforeDeviceLock": 0, + "numberOfPastPinsRemembered": 0, + "passwordMaximumAttemptCount": 0, + "pinExpirationDays": 0, + "pinLowercaseLetters": { + "@odata.type": "microsoft.graph.windowsInformationProtectionPinCharacterRequirements" + }, + "pinMinimumLength": 0, + "pinSpecialCharacters": { + "@odata.type": "microsoft.graph.windowsInformationProtectionPinCharacterRequirements" + }, + "pinUppercaseLetters": { + "@odata.type": "microsoft.graph.windowsInformationProtectionPinCharacterRequirements" + }, + "revokeOnMdmHandoffDisabled": true, + "windowsHelloForBusinessBlocked": true + } + }, + "microsoft.graph.managedAppStatus": { + "value": { + "displayName": "String", + "version": "String" + } + }, + "microsoft.graph.managedEBook": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.managedEBookAssignment" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "deviceStates": [ + { + "@odata.type": "microsoft.graph.deviceInstallState" + } + ], + "displayName": "String", + "informationUrl": "String", + "installSummary": { + "@odata.type": "microsoft.graph.eBookInstallSummary" + }, + "largeCover": { + "@odata.type": "microsoft.graph.mimeContent" + }, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "privacyInformationUrl": "String", + "publishedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "publisher": "String", + "userStateSummary": [ + { + "@odata.type": "microsoft.graph.userInstallStateSummary" + } + ] + } + }, + "microsoft.graph.mobileAppAssignment": { + "value": { + "intent": { + "@odata.type": "microsoft.graph.installIntent" + }, + "settings": { + "@odata.type": "microsoft.graph.mobileAppAssignmentSettings" + }, + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.deviceAndAppManagementAssignmentTarget": {}, + "microsoft.graph.mobileAppAssignmentSettings": {}, + "microsoft.graph.mimeContent": { + "value": { + "type": "String", + "value": "AA==" + } + }, + "microsoft.graph.mobileAppContentFile": { + "value": { + "azureStorageUri": "String", + "azureStorageUriExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "isCommitted": true, + "manifest": "AA==", + "name": "String", + "size": 0, + "sizeEncrypted": 0, + "uploadState": { + "@odata.type": "microsoft.graph.mobileAppContentFileUploadState" + } + } + }, + "microsoft.graph.fileEncryptionInfo": { + "value": { + "encryptionKey": "AA==", + "fileDigest": "AA==", + "fileDigestAlgorithm": "String", + "initializationVector": "AA==", + "mac": "AA==", + "macKey": "AA==", + "profileIdentifier": "String" + } + }, + "microsoft.graph.allLicensedUsersAssignmentTarget": {}, + "microsoft.graph.groupAssignmentTarget": { + "value": { + "groupId": "String" + } + }, + "microsoft.graph.exclusionGroupAssignmentTarget": {}, + "microsoft.graph.allDevicesAssignmentTarget": {}, + "microsoft.graph.iosLobAppAssignmentSettings": { + "value": { + "vpnConfigurationId": "String" + } + }, + "microsoft.graph.iosStoreAppAssignmentSettings": { + "value": { + "vpnConfigurationId": "String" + } + }, + "microsoft.graph.iosVppAppAssignmentSettings": { + "value": { + "useDeviceLicensing": true, + "vpnConfigurationId": "String" + } + }, + "microsoft.graph.microsoftStoreForBusinessAppAssignmentSettings": { + "value": { + "useDeviceContext": true + } + }, + "microsoft.graph.macOSOfficeSuiteApp": {}, + "microsoft.graph.managedApp": { + "value": { + "appAvailability": { + "@odata.type": "microsoft.graph.managedAppAvailability" + }, + "version": "String" + } + }, + "microsoft.graph.managedAndroidStoreApp": { + "value": { + "appStoreUrl": "String", + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.androidMinimumOperatingSystem" + }, + "packageId": "String" + } + }, + "microsoft.graph.androidMinimumOperatingSystem": { + "value": { + "v4_0": true, + "v4_0_3": true, + "v4_1": true, + "v4_2": true, + "v4_3": true, + "v4_4": true, + "v5_0": true, + "v5_1": true + } + }, + "microsoft.graph.managedIOSStoreApp": { + "value": { + "applicableDeviceType": { + "@odata.type": "microsoft.graph.iosDeviceType" + }, + "appStoreUrl": "String", + "bundleId": "String", + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.iosMinimumOperatingSystem" + } + } + }, + "microsoft.graph.iosDeviceType": { + "value": { + "iPad": true, + "iPhoneAndIPod": true + } + }, + "microsoft.graph.iosMinimumOperatingSystem": { + "value": { + "v10_0": true, + "v11_0": true, + "v8_0": true, + "v9_0": true + } + }, + "microsoft.graph.managedMobileLobApp": { + "value": { + "committedContentVersion": "String", + "contentVersions": [ + { + "@odata.type": "microsoft.graph.mobileAppContent" + } + ], + "fileName": "String", + "size": 0 + } + }, + "microsoft.graph.mobileAppContent": { + "value": { + "files": [ + { + "@odata.type": "microsoft.graph.mobileAppContentFile" + } + ] + } + }, + "microsoft.graph.managedAndroidLobApp": { + "value": { + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.androidMinimumOperatingSystem" + }, + "packageId": "String", + "versionCode": "String", + "versionName": "String" + } + }, + "microsoft.graph.managedIOSLobApp": { + "value": { + "applicableDeviceType": { + "@odata.type": "microsoft.graph.iosDeviceType" + }, + "buildNumber": "String", + "bundleId": "String", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.iosMinimumOperatingSystem" + }, + "versionNumber": "String" + } + }, + "microsoft.graph.mobileLobApp": { + "value": { + "committedContentVersion": "String", + "contentVersions": [ + { + "@odata.type": "microsoft.graph.mobileAppContent" + } + ], + "fileName": "String", + "size": 0 + } + }, + "microsoft.graph.windowsMinimumOperatingSystem": { + "value": { + "v10_0": true, + "v8_0": true, + "v8_1": true + } + }, + "microsoft.graph.windowsMobileMSI": { + "value": { + "commandLine": "String", + "ignoreVersionDetection": true, + "productCode": "String", + "productVersion": "String" + } + }, + "microsoft.graph.windowsUniversalAppX": { + "value": { + "applicableArchitectures": { + "@odata.type": "microsoft.graph.windowsArchitecture" + }, + "applicableDeviceTypes": { + "@odata.type": "microsoft.graph.windowsDeviceType" + }, + "identityName": "String", + "identityPublisherHash": "String", + "identityResourceIdentifier": "String", + "identityVersion": "String", + "isBundle": true, + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.windowsMinimumOperatingSystem" + } + } + }, + "microsoft.graph.androidLobApp": { + "value": { + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.androidMinimumOperatingSystem" + }, + "packageId": "String", + "versionCode": "String", + "versionName": "String" + } + }, + "microsoft.graph.iosLobApp": { + "value": { + "applicableDeviceType": { + "@odata.type": "microsoft.graph.iosDeviceType" + }, + "buildNumber": "String", + "bundleId": "String", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.iosMinimumOperatingSystem" + }, + "versionNumber": "String" + } + }, + "microsoft.graph.microsoftStoreForBusinessApp": { + "value": { + "licenseType": { + "@odata.type": "microsoft.graph.microsoftStoreForBusinessLicenseType" + }, + "packageIdentityName": "String", + "productKey": "String", + "totalLicenseCount": 0, + "usedLicenseCount": 0 + } + }, + "microsoft.graph.webApp": { + "value": { + "appUrl": "String", + "useManagedBrowser": true + } + }, + "microsoft.graph.androidStoreApp": { + "value": { + "appStoreUrl": "String", + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.androidMinimumOperatingSystem" + }, + "packageId": "String" + } + }, + "microsoft.graph.iosVppApp": { + "value": { + "applicableDeviceType": { + "@odata.type": "microsoft.graph.iosDeviceType" + }, + "appStoreUrl": "String", + "bundleId": "String", + "licensingType": { + "@odata.type": "microsoft.graph.vppLicensingType" + }, + "releaseDateTime": "0001-01-01T00:00:00.0000000+00:00", + "totalLicenseCount": 0, + "usedLicenseCount": 0, + "vppTokenAccountType": { + "@odata.type": "microsoft.graph.vppTokenAccountType" + }, + "vppTokenAppleId": "String", + "vppTokenOrganizationName": "String" + } + }, + "microsoft.graph.vppLicensingType": { + "value": { + "supportsDeviceLicensing": true, + "supportsUserLicensing": true + } + }, + "microsoft.graph.iosStoreApp": { + "value": { + "applicableDeviceType": { + "@odata.type": "microsoft.graph.iosDeviceType" + }, + "appStoreUrl": "String", + "bundleId": "String", + "minimumSupportedOperatingSystem": { + "@odata.type": "microsoft.graph.iosMinimumOperatingSystem" + } + } + }, + "microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus": { + "value": { + "complianceGracePeriodExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceDisplayName": "String", + "deviceModel": "String", + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.managedDeviceMobileAppConfigurationUserStatus": { + "value": { + "devicesCount": 0, + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userDisplayName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.managedDeviceMobileAppConfigurationAssignment": { + "value": { + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary": { + "value": { + "configurationVersion": 0, + "errorCount": 0, + "failedCount": 0, + "lastUpdateDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notApplicableCount": 0, + "pendingCount": 0, + "successCount": 0 + } + }, + "microsoft.graph.managedDeviceMobileAppConfigurationUserSummary": { + "value": { + "configurationVersion": 0, + "errorCount": 0, + "failedCount": 0, + "lastUpdateDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notApplicableCount": 0, + "pendingCount": 0, + "successCount": 0 + } + }, + "microsoft.graph.iosMobileAppConfiguration": { + "value": { + "encodedSettingXml": "AA==", + "settings": [ + { + "@odata.type": "microsoft.graph.appConfigurationSettingItem" + } + ] + } + }, + "microsoft.graph.appConfigurationSettingItem": { + "value": { + "appConfigKey": "String", + "appConfigKeyType": { + "@odata.type": "microsoft.graph.mdmAppConfigKeyType" + }, + "appConfigKeyValue": "String" + } + }, + "microsoft.graph.deviceManagement": { + "value": { + "applePushNotificationCertificate": { + "@odata.type": "microsoft.graph.applePushNotificationCertificate" + }, + "conditionalAccessSettings": { + "@odata.type": "microsoft.graph.onPremisesConditionalAccessSettings" + }, + "detectedApps": [ + { + "@odata.type": "microsoft.graph.detectedApp" + } + ], + "deviceCategories": [ + { + "@odata.type": "microsoft.graph.deviceCategory" + } + ], + "deviceCompliancePolicies": [ + { + "@odata.type": "microsoft.graph.deviceCompliancePolicy" + } + ], + "deviceCompliancePolicyDeviceStateSummary": { + "@odata.type": "microsoft.graph.deviceCompliancePolicyDeviceStateSummary" + }, + "deviceCompliancePolicySettingStateSummaries": [ + { + "@odata.type": "microsoft.graph.deviceCompliancePolicySettingStateSummary" + } + ], + "deviceConfigurationDeviceStateSummaries": { + "@odata.type": "microsoft.graph.deviceConfigurationDeviceStateSummary" + }, + "deviceConfigurations": [ + { + "@odata.type": "microsoft.graph.deviceConfiguration" + } + ], + "deviceEnrollmentConfigurations": [ + { + "@odata.type": "microsoft.graph.deviceEnrollmentConfiguration" + } + ], + "deviceManagementPartners": [ + { + "@odata.type": "microsoft.graph.deviceManagementPartner" + } + ], + "exchangeConnectors": [ + { + "@odata.type": "microsoft.graph.deviceManagementExchangeConnector" + } + ], + "intuneBrand": { + "@odata.type": "microsoft.graph.intuneBrand" + }, + "iosUpdateStatuses": [ + { + "@odata.type": "microsoft.graph.iosUpdateDeviceStatus" + } + ], + "managedDeviceOverview": { + "@odata.type": "microsoft.graph.managedDeviceOverview" + }, + "managedDevices": [ + { + "@odata.type": "microsoft.graph.managedDevice" + } + ], + "mobileThreatDefenseConnectors": [ + { + "@odata.type": "microsoft.graph.mobileThreatDefenseConnector" + } + ], + "notificationMessageTemplates": [ + { + "@odata.type": "microsoft.graph.notificationMessageTemplate" + } + ], + "remoteAssistancePartners": [ + { + "@odata.type": "microsoft.graph.remoteAssistancePartner" + } + ], + "resourceOperations": [ + { + "@odata.type": "microsoft.graph.resourceOperation" + } + ], + "roleAssignments": [ + { + "@odata.type": "microsoft.graph.deviceAndAppManagementRoleAssignment" + } + ], + "roleDefinitions": [ + { + "@odata.type": "microsoft.graph.roleDefinition" + } + ], + "settings": { + "@odata.type": "microsoft.graph.deviceManagementSettings" + }, + "softwareUpdateStatusSummary": { + "@odata.type": "microsoft.graph.softwareUpdateStatusSummary" + }, + "subscriptionState": { + "@odata.type": "microsoft.graph.deviceManagementSubscriptionState" + }, + "telecomExpenseManagementPartners": [ + { + "@odata.type": "microsoft.graph.telecomExpenseManagementPartner" + } + ], + "termsAndConditions": [ + { + "@odata.type": "microsoft.graph.termsAndConditions" + } + ], + "troubleshootingEvents": [ + { + "@odata.type": "microsoft.graph.deviceManagementTroubleshootingEvent" + } + ], + "windowsInformationProtectionAppLearningSummaries": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionAppLearningSummary" + } + ], + "windowsInformationProtectionNetworkLearningSummaries": [ + { + "@odata.type": "microsoft.graph.windowsInformationProtectionNetworkLearningSummary" + } + ] + } + }, + "microsoft.graph.termsAndConditions": { + "value": { + "acceptanceStatement": "String", + "acceptanceStatuses": [ + { + "@odata.type": "microsoft.graph.termsAndConditionsAcceptanceStatus" + } + ], + "assignments": [ + { + "@odata.type": "microsoft.graph.termsAndConditionsAssignment" + } + ], + "bodyText": "String", + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "title": "String", + "version": 0 + } + }, + "microsoft.graph.applePushNotificationCertificate": { + "value": { + "appleIdentifier": "String", + "certificate": "String", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "topicIdentifier": "String" + } + }, + "microsoft.graph.managedDeviceOverview": { + "value": { + "deviceExchangeAccessStateSummary": { + "@odata.type": "microsoft.graph.deviceExchangeAccessStateSummary" + }, + "deviceOperatingSystemSummary": { + "@odata.type": "microsoft.graph.deviceOperatingSystemSummary" + }, + "dualEnrolledDeviceCount": 0, + "enrolledDeviceCount": 0, + "mdmEnrolledCount": 0 + } + }, + "microsoft.graph.detectedApp": { + "value": { + "deviceCount": 0, + "displayName": "String", + "managedDevices": [ + { + "@odata.type": "microsoft.graph.managedDevice" + } + ], + "sizeInByte": 0, + "version": "String" + } + }, + "microsoft.graph.deviceManagementSettings": { + "value": { + "deviceComplianceCheckinThresholdDays": 0, + "isScheduledActionEnabled": true, + "secureByDefault": true + } + }, + "microsoft.graph.deviceConfiguration": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.deviceConfigurationAssignment" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "deviceSettingStateSummaries": [ + { + "@odata.type": "microsoft.graph.settingStateDeviceSummary" + } + ], + "deviceStatuses": [ + { + "@odata.type": "microsoft.graph.deviceConfigurationDeviceStatus" + } + ], + "deviceStatusOverview": { + "@odata.type": "microsoft.graph.deviceConfigurationDeviceOverview" + }, + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "userStatuses": [ + { + "@odata.type": "microsoft.graph.deviceConfigurationUserStatus" + } + ], + "userStatusOverview": { + "@odata.type": "microsoft.graph.deviceConfigurationUserOverview" + }, + "version": 0 + } + }, + "microsoft.graph.deviceCompliancePolicy": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.deviceCompliancePolicyAssignment" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "deviceSettingStateSummaries": [ + { + "@odata.type": "microsoft.graph.settingStateDeviceSummary" + } + ], + "deviceStatuses": [ + { + "@odata.type": "microsoft.graph.deviceComplianceDeviceStatus" + } + ], + "deviceStatusOverview": { + "@odata.type": "microsoft.graph.deviceComplianceDeviceOverview" + }, + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "scheduledActionsForRule": [ + { + "@odata.type": "microsoft.graph.deviceComplianceScheduledActionForRule" + } + ], + "userStatuses": [ + { + "@odata.type": "microsoft.graph.deviceComplianceUserStatus" + } + ], + "userStatusOverview": { + "@odata.type": "microsoft.graph.deviceComplianceUserOverview" + }, + "version": 0 + } + }, + "microsoft.graph.softwareUpdateStatusSummary": { + "value": { + "compliantDeviceCount": 0, + "compliantUserCount": 0, + "conflictDeviceCount": 0, + "conflictUserCount": 0, + "displayName": "String", + "errorDeviceCount": 0, + "errorUserCount": 0, + "nonCompliantDeviceCount": 0, + "nonCompliantUserCount": 0, + "notApplicableDeviceCount": 0, + "notApplicableUserCount": 0, + "remediatedDeviceCount": 0, + "remediatedUserCount": 0, + "unknownDeviceCount": 0, + "unknownUserCount": 0 + } + }, + "microsoft.graph.deviceCompliancePolicyDeviceStateSummary": { + "value": { + "compliantDeviceCount": 0, + "configManagerCount": 0, + "conflictDeviceCount": 0, + "errorDeviceCount": 0, + "inGracePeriodCount": 0, + "nonCompliantDeviceCount": 0, + "notApplicableDeviceCount": 0, + "remediatedDeviceCount": 0, + "unknownDeviceCount": 0 + } + }, + "microsoft.graph.deviceCompliancePolicySettingStateSummary": { + "value": { + "compliantDeviceCount": 0, + "conflictDeviceCount": 0, + "deviceComplianceSettingStates": [ + { + "@odata.type": "microsoft.graph.deviceComplianceSettingState" + } + ], + "errorDeviceCount": 0, + "nonCompliantDeviceCount": 0, + "notApplicableDeviceCount": 0, + "platformType": { + "@odata.type": "microsoft.graph.policyPlatformType" + }, + "remediatedDeviceCount": 0, + "setting": "String", + "settingName": "String", + "unknownDeviceCount": 0 + } + }, + "microsoft.graph.deviceConfigurationDeviceStateSummary": { + "value": { + "compliantDeviceCount": 0, + "conflictDeviceCount": 0, + "errorDeviceCount": 0, + "nonCompliantDeviceCount": 0, + "notApplicableDeviceCount": 0, + "remediatedDeviceCount": 0, + "unknownDeviceCount": 0 + } + }, + "microsoft.graph.iosUpdateDeviceStatus": { + "value": { + "complianceGracePeriodExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceDisplayName": "String", + "deviceId": "String", + "deviceModel": "String", + "installStatus": { + "@odata.type": "microsoft.graph.iosUpdatesInstallStatus" + }, + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "osVersion": "String", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userId": "String", + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.intuneBrand": { + "value": { + "contactITEmailAddress": "String", + "contactITName": "String", + "contactITNotes": "String", + "contactITPhoneNumber": "String", + "darkBackgroundLogo": { + "@odata.type": "microsoft.graph.mimeContent" + }, + "displayName": "String", + "lightBackgroundLogo": { + "@odata.type": "microsoft.graph.mimeContent" + }, + "onlineSupportSiteName": "String", + "onlineSupportSiteUrl": "String", + "privacyUrl": "String", + "showDisplayNameNextToLogo": true, + "showLogo": true, + "showNameNextToLogo": true, + "themeColor": { + "@odata.type": "microsoft.graph.rgbColor" + } + } + }, + "microsoft.graph.rgbColor": { + "value": { + "b": "AA==", + "g": "AA==", + "r": "AA==" + } + }, + "microsoft.graph.deviceCategory": { + "value": { + "description": "String", + "displayName": "String" + } + }, + "microsoft.graph.deviceManagementExchangeConnector": { + "value": { + "connectorServerName": "String", + "exchangeAlias": "String", + "exchangeConnectorType": { + "@odata.type": "microsoft.graph.deviceManagementExchangeConnectorType" + }, + "exchangeOrganization": "String", + "lastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "primarySmtpAddress": "String", + "serverName": "String", + "status": { + "@odata.type": "microsoft.graph.deviceManagementExchangeConnectorStatus" + }, + "version": "String" + } + }, + "microsoft.graph.deviceEnrollmentConfiguration": { + "value": { + "assignments": [ + { + "@odata.type": "microsoft.graph.enrollmentConfigurationAssignment" + } + ], + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "priority": 0, + "version": 0 + } + }, + "microsoft.graph.onPremisesConditionalAccessSettings": { + "value": { + "enabled": true, + "excludedGroups": [ + "00000000-0000-0000-0000-000000000000" + ], + "includedGroups": [ + "00000000-0000-0000-0000-000000000000" + ], + "overrideDefaultRule": true + } + }, + "microsoft.graph.mobileThreatDefenseConnector": { + "value": { + "androidDeviceBlockedOnMissingPartnerData": true, + "androidEnabled": true, + "iosDeviceBlockedOnMissingPartnerData": true, + "iosEnabled": true, + "lastHeartbeatDateTime": "0001-01-01T00:00:00.0000000+00:00", + "partnerState": { + "@odata.type": "microsoft.graph.mobileThreatPartnerTenantState" + }, + "partnerUnresponsivenessThresholdInDays": 0, + "partnerUnsupportedOsVersionBlocked": true + } + }, + "microsoft.graph.deviceManagementPartner": { + "value": { + "displayName": "String", + "isConfigured": true, + "lastHeartbeatDateTime": "0001-01-01T00:00:00.0000000+00:00", + "partnerAppType": { + "@odata.type": "microsoft.graph.deviceManagementPartnerAppType" + }, + "partnerState": { + "@odata.type": "microsoft.graph.deviceManagementPartnerTenantState" + }, + "singleTenantAppId": "String", + "whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime": "0001-01-01T00:00:00.0000000+00:00", + "whenPartnerDevicesWillBeRemovedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.notificationMessageTemplate": { + "value": { + "brandingOptions": { + "@odata.type": "microsoft.graph.notificationTemplateBrandingOptions" + }, + "defaultLocale": "String", + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "localizedNotificationMessages": [ + { + "@odata.type": "microsoft.graph.localizedNotificationMessage" + } + ] + } + }, + "microsoft.graph.roleDefinition": { + "value": { + "description": "String", + "displayName": "String", + "isBuiltIn": true, + "roleAssignments": [ + { + "@odata.type": "microsoft.graph.roleAssignment" + } + ], + "rolePermissions": [ + { + "@odata.type": "microsoft.graph.rolePermission" + } + ] + } + }, + "microsoft.graph.roleAssignment": { + "value": { + "description": "String", + "displayName": "String", + "resourceScopes": [ + "String" + ], + "roleDefinition": { + "@odata.type": "microsoft.graph.roleDefinition" + } + } + }, + "microsoft.graph.deviceAndAppManagementRoleAssignment": { + "value": { + "members": [ + "String" + ] + } + }, + "microsoft.graph.resourceOperation": { + "value": { + "actionName": "String", + "description": "String", + "resourceName": "String" + } + }, + "microsoft.graph.telecomExpenseManagementPartner": { + "value": { + "appAuthorized": true, + "displayName": "String", + "enabled": true, + "lastConnectionDateTime": "0001-01-01T00:00:00.0000000+00:00", + "url": "String" + } + }, + "microsoft.graph.remoteAssistancePartner": { + "value": { + "displayName": "String", + "lastConnectionDateTime": "0001-01-01T00:00:00.0000000+00:00", + "onboardingStatus": { + "@odata.type": "microsoft.graph.remoteAssistanceOnboardingStatus" + }, + "onboardingUrl": "String" + } + }, + "microsoft.graph.windowsInformationProtectionAppLearningSummary": { + "value": { + "applicationName": "String", + "applicationType": { + "@odata.type": "microsoft.graph.applicationType" + }, + "deviceCount": 0 + } + }, + "microsoft.graph.windowsInformationProtectionNetworkLearningSummary": { + "value": { + "deviceCount": 0, + "url": "String" + } + }, + "microsoft.graph.termsAndConditionsAssignment": { + "value": { + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.termsAndConditionsAcceptanceStatus": { + "value": { + "acceptedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "acceptedVersion": 0, + "termsAndConditions": { + "@odata.type": "microsoft.graph.termsAndConditions" + }, + "userDisplayName": "String" + } + }, + "microsoft.graph.deviceConfigurationState": { + "value": { + "displayName": "String", + "platformType": { + "@odata.type": "microsoft.graph.policyPlatformType" + }, + "settingCount": 0, + "settingStates": [ + { + "@odata.type": "microsoft.graph.deviceConfigurationSettingState" + } + ], + "state": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "version": 0 + } + }, + "microsoft.graph.deviceActionResult": { + "value": { + "actionName": "String", + "actionState": { + "@odata.type": "microsoft.graph.actionState" + }, + "lastUpdatedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "startDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.configurationManagerClientEnabledFeatures": { + "value": { + "compliancePolicy": true, + "deviceConfiguration": true, + "inventory": true, + "modernApps": true, + "resourceAccess": true, + "windowsUpdateForBusiness": true + } + }, + "microsoft.graph.deviceHealthAttestationState": { + "value": { + "attestationIdentityKey": "String", + "bitLockerStatus": "String", + "bootAppSecurityVersion": "String", + "bootDebugging": "String", + "bootManagerSecurityVersion": "String", + "bootManagerVersion": "String", + "bootRevisionListInfo": "String", + "codeIntegrity": "String", + "codeIntegrityCheckVersion": "String", + "codeIntegrityPolicy": "String", + "contentNamespaceUrl": "String", + "contentVersion": "String", + "dataExcutionPolicy": "String", + "deviceHealthAttestationStatus": "String", + "earlyLaunchAntiMalwareDriverProtection": "String", + "healthAttestationSupportedStatus": "String", + "healthStatusMismatchInfo": "String", + "issuedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastUpdateDateTime": "String", + "operatingSystemKernelDebugging": "String", + "operatingSystemRevListInfo": "String", + "pcr0": "String", + "pcrHashAlgorithm": "String", + "resetCount": 0, + "restartCount": 0, + "safeMode": "String", + "secureBoot": "String", + "secureBootConfigurationPolicyFingerPrint": "String", + "testSigning": "String", + "tpmVersion": "String", + "virtualSecureMode": "String", + "windowsPE": "String" + } + }, + "microsoft.graph.deviceCompliancePolicyState": { + "value": { + "displayName": "String", + "platformType": { + "@odata.type": "microsoft.graph.policyPlatformType" + }, + "settingCount": 0, + "settingStates": [ + { + "@odata.type": "microsoft.graph.deviceCompliancePolicySettingState" + } + ], + "state": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "version": 0 + } + }, + "microsoft.graph.updateWindowsDeviceAccountActionParameter": { + "value": { + "calendarSyncEnabled": true, + "deviceAccount": { + "@odata.type": "microsoft.graph.windowsDeviceAccount" + }, + "deviceAccountEmail": "String", + "exchangeServer": "String", + "passwordRotationEnabled": true, + "sessionInitiationProtocalAddress": "String" + } + }, + "microsoft.graph.windowsDeviceAccount": { + "value": { + "password": "String" + } + }, + "microsoft.graph.windowsDefenderScanActionResult": { + "value": { + "scanType": "String" + } + }, + "microsoft.graph.deleteUserFromSharedAppleDeviceActionResult": { + "value": { + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceGeoLocation": { + "value": { + "altitude": 0, + "heading": 0, + "horizontalAccuracy": 0, + "lastCollectedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "latitude": 0, + "longitude": 0, + "speed": 0, + "verticalAccuracy": 0 + } + }, + "microsoft.graph.locateDeviceActionResult": { + "value": { + "deviceLocation": { + "@odata.type": "microsoft.graph.deviceGeoLocation" + } + } + }, + "microsoft.graph.remoteLockActionResult": { + "value": { + "unlockPin": "String" + } + }, + "microsoft.graph.resetPasscodeActionResult": { + "value": { + "passcode": "String" + } + }, + "microsoft.graph.deviceOperatingSystemSummary": { + "value": { + "androidCount": 0, + "iosCount": 0, + "macOSCount": 0, + "unknownCount": 0, + "windowsCount": 0, + "windowsMobileCount": 0 + } + }, + "microsoft.graph.deviceExchangeAccessStateSummary": { + "value": { + "allowedDeviceCount": 0, + "blockedDeviceCount": 0, + "quarantinedDeviceCount": 0, + "unavailableDeviceCount": 0, + "unknownDeviceCount": 0 + } + }, + "microsoft.graph.windowsDeviceADAccount": { + "value": { + "domainName": "String", + "userName": "String" + } + }, + "microsoft.graph.windowsDeviceAzureADAccount": { + "value": { + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceConfigurationAssignment": { + "value": { + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.deviceConfigurationDeviceStatus": { + "value": { + "complianceGracePeriodExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceDisplayName": "String", + "deviceModel": "String", + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceConfigurationUserStatus": { + "value": { + "devicesCount": 0, + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userDisplayName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceConfigurationDeviceOverview": { + "value": { + "configurationVersion": 0, + "errorCount": 0, + "failedCount": 0, + "lastUpdateDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notApplicableCount": 0, + "pendingCount": 0, + "successCount": 0 + } + }, + "microsoft.graph.deviceConfigurationUserOverview": { + "value": { + "configurationVersion": 0, + "errorCount": 0, + "failedCount": 0, + "lastUpdateDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notApplicableCount": 0, + "pendingCount": 0, + "successCount": 0 + } + }, + "microsoft.graph.settingStateDeviceSummary": { + "value": { + "compliantDeviceCount": 0, + "conflictDeviceCount": 0, + "errorDeviceCount": 0, + "instancePath": "String", + "nonCompliantDeviceCount": 0, + "notApplicableDeviceCount": 0, + "remediatedDeviceCount": 0, + "settingName": "String", + "unknownDeviceCount": 0 + } + }, + "microsoft.graph.deviceCompliancePolicyAssignment": { + "value": { + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.deviceComplianceScheduledActionForRule": { + "value": { + "ruleName": "String", + "scheduledActionConfigurations": [ + { + "@odata.type": "microsoft.graph.deviceComplianceActionItem" + } + ] + } + }, + "microsoft.graph.deviceComplianceDeviceStatus": { + "value": { + "complianceGracePeriodExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceDisplayName": "String", + "deviceModel": "String", + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceComplianceUserStatus": { + "value": { + "devicesCount": 0, + "lastReportedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userDisplayName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceComplianceDeviceOverview": { + "value": { + "configurationVersion": 0, + "errorCount": 0, + "failedCount": 0, + "lastUpdateDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notApplicableCount": 0, + "pendingCount": 0, + "successCount": 0 + } + }, + "microsoft.graph.deviceComplianceUserOverview": { + "value": { + "configurationVersion": 0, + "errorCount": 0, + "failedCount": 0, + "lastUpdateDateTime": "0001-01-01T00:00:00.0000000+00:00", + "notApplicableCount": 0, + "pendingCount": 0, + "successCount": 0 + } + }, + "microsoft.graph.deviceComplianceActionItem": { + "value": { + "actionType": { + "@odata.type": "microsoft.graph.deviceComplianceActionType" + }, + "gracePeriodHours": 0, + "notificationMessageCCList": [ + "String" + ], + "notificationTemplateId": "String" + } + }, + "microsoft.graph.appListItem": { + "value": { + "appId": "String", + "appStoreUrl": "String", + "name": "String", + "publisher": "String" + } + }, + "microsoft.graph.androidCustomConfiguration": { + "value": { + "omaSettings": [ + { + "@odata.type": "microsoft.graph.omaSetting" + } + ] + } + }, + "microsoft.graph.omaSetting": { + "value": { + "description": "String", + "displayName": "String", + "omaUri": "String" + } + }, + "microsoft.graph.omaSettingInteger": { + "value": { + "value": 0 + } + }, + "microsoft.graph.omaSettingFloatingPoint": { + "value": { + "value": 0 + } + }, + "microsoft.graph.omaSettingString": { + "value": { + "value": "String" + } + }, + "microsoft.graph.omaSettingDateTime": { + "value": { + "value": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.omaSettingStringXml": { + "value": { + "fileName": "String", + "value": "AA==" + } + }, + "microsoft.graph.omaSettingBoolean": { + "value": { + "value": true + } + }, + "microsoft.graph.omaSettingBase64": { + "value": { + "fileName": "String", + "value": "String" + } + }, + "microsoft.graph.androidGeneralDeviceConfiguration": { + "value": { + "appsBlockClipboardSharing": true, + "appsBlockCopyPaste": true, + "appsBlockYouTube": true, + "appsHideList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "appsInstallAllowList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "appsLaunchBlockList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "bluetoothBlocked": true, + "cameraBlocked": true, + "cellularBlockDataRoaming": true, + "cellularBlockMessaging": true, + "cellularBlockVoiceRoaming": true, + "cellularBlockWiFiTethering": true, + "compliantAppListType": { + "@odata.type": "microsoft.graph.appListType" + }, + "compliantAppsList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "deviceSharingAllowed": true, + "diagnosticDataBlockSubmission": true, + "factoryResetBlocked": true, + "googleAccountBlockAutoSync": true, + "googlePlayStoreBlocked": true, + "kioskModeApps": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "kioskModeBlockSleepButton": true, + "kioskModeBlockVolumeButtons": true, + "locationServicesBlocked": true, + "nfcBlocked": true, + "passwordBlockFingerprintUnlock": true, + "passwordBlockTrustAgents": true, + "passwordExpirationDays": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeScreenTimeout": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.androidRequiredPasswordType" + }, + "passwordSignInFailureCountBeforeFactoryReset": 0, + "powerOffBlocked": true, + "screenCaptureBlocked": true, + "securityRequireVerifyApps": true, + "storageBlockGoogleBackup": true, + "storageBlockRemovableStorage": true, + "storageRequireDeviceEncryption": true, + "storageRequireRemovableStorageEncryption": true, + "voiceAssistantBlocked": true, + "voiceDialingBlocked": true, + "webBrowserBlockAutofill": true, + "webBrowserBlocked": true, + "webBrowserBlockJavaScript": true, + "webBrowserBlockPopups": true, + "webBrowserCookieSettings": { + "@odata.type": "microsoft.graph.webBrowserCookieSettings" + }, + "wiFiBlocked": true + } + }, + "microsoft.graph.androidWorkProfileCustomConfiguration": { + "value": { + "omaSettings": [ + { + "@odata.type": "microsoft.graph.omaSetting" + } + ] + } + }, + "microsoft.graph.androidWorkProfileGeneralDeviceConfiguration": { + "value": { + "passwordBlockFingerprintUnlock": true, + "passwordBlockTrustAgents": true, + "passwordExpirationDays": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeScreenTimeout": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.androidWorkProfileRequiredPasswordType" + }, + "passwordSignInFailureCountBeforeFactoryReset": 0, + "securityRequireVerifyApps": true, + "workProfileBlockAddingAccounts": true, + "workProfileBlockCamera": true, + "workProfileBlockCrossProfileCallerId": true, + "workProfileBlockCrossProfileContactsSearch": true, + "workProfileBlockCrossProfileCopyPaste": true, + "workProfileBlockNotificationsWhileDeviceLocked": true, + "workProfileBlockScreenCapture": true, + "workProfileBluetoothEnableContactSharing": true, + "workProfileDataSharingType": { + "@odata.type": "microsoft.graph.androidWorkProfileCrossProfileDataSharingType" + }, + "workProfileDefaultAppPermissionPolicy": { + "@odata.type": "microsoft.graph.androidWorkProfileDefaultAppPermissionPolicyType" + }, + "workProfilePasswordBlockFingerprintUnlock": true, + "workProfilePasswordBlockTrustAgents": true, + "workProfilePasswordExpirationDays": 0, + "workProfilePasswordMinimumLength": 0, + "workProfilePasswordMinLetterCharacters": 0, + "workProfilePasswordMinLowerCaseCharacters": 0, + "workProfilePasswordMinNonLetterCharacters": 0, + "workProfilePasswordMinNumericCharacters": 0, + "workProfilePasswordMinSymbolCharacters": 0, + "workProfilePasswordMinUpperCaseCharacters": 0, + "workProfilePasswordMinutesOfInactivityBeforeScreenTimeout": 0, + "workProfilePasswordPreviousPasswordBlockCount": 0, + "workProfilePasswordRequiredType": { + "@odata.type": "microsoft.graph.androidWorkProfileRequiredPasswordType" + }, + "workProfilePasswordSignInFailureCountBeforeFactoryReset": 0, + "workProfileRequirePassword": true + } + }, + "microsoft.graph.iosCertificateProfile": {}, + "microsoft.graph.iosCustomConfiguration": { + "value": { + "payload": "AA==", + "payloadFileName": "String", + "payloadName": "String" + } + }, + "microsoft.graph.iosGeneralDeviceConfiguration": { + "value": { + "accountBlockModification": true, + "activationLockAllowWhenSupervised": true, + "airDropBlocked": true, + "airDropForceUnmanagedDropTarget": true, + "airPlayForcePairingPasswordForOutgoingRequests": true, + "appleNewsBlocked": true, + "appleWatchBlockPairing": true, + "appleWatchForceWristDetection": true, + "appsSingleAppModeList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "appStoreBlockAutomaticDownloads": true, + "appStoreBlocked": true, + "appStoreBlockInAppPurchases": true, + "appStoreBlockUIAppInstallation": true, + "appStoreRequirePassword": true, + "appsVisibilityList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "appsVisibilityListType": { + "@odata.type": "microsoft.graph.appListType" + }, + "bluetoothBlockModification": true, + "cameraBlocked": true, + "cellularBlockDataRoaming": true, + "cellularBlockGlobalBackgroundFetchWhileRoaming": true, + "cellularBlockPerAppDataModification": true, + "cellularBlockPersonalHotspot": true, + "cellularBlockVoiceRoaming": true, + "certificatesBlockUntrustedTlsCertificates": true, + "classroomAppBlockRemoteScreenObservation": true, + "classroomAppForceUnpromptedScreenObservation": true, + "compliantAppListType": { + "@odata.type": "microsoft.graph.appListType" + }, + "compliantAppsList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "configurationProfileBlockChanges": true, + "definitionLookupBlocked": true, + "deviceBlockEnableRestrictions": true, + "deviceBlockEraseContentAndSettings": true, + "deviceBlockNameModification": true, + "diagnosticDataBlockSubmission": true, + "diagnosticDataBlockSubmissionModification": true, + "documentsBlockManagedDocumentsInUnmanagedApps": true, + "documentsBlockUnmanagedDocumentsInManagedApps": true, + "emailInDomainSuffixes": [ + "String" + ], + "enterpriseAppBlockTrust": true, + "enterpriseAppBlockTrustModification": true, + "faceTimeBlocked": true, + "findMyFriendsBlocked": true, + "gameCenterBlocked": true, + "gamingBlockGameCenterFriends": true, + "gamingBlockMultiplayer": true, + "hostPairingBlocked": true, + "iBooksStoreBlocked": true, + "iBooksStoreBlockErotica": true, + "iCloudBlockActivityContinuation": true, + "iCloudBlockBackup": true, + "iCloudBlockDocumentSync": true, + "iCloudBlockManagedAppsSync": true, + "iCloudBlockPhotoLibrary": true, + "iCloudBlockPhotoStreamSync": true, + "iCloudBlockSharedPhotoStream": true, + "iCloudRequireEncryptedBackup": true, + "iTunesBlockExplicitContent": true, + "iTunesBlockMusicService": true, + "iTunesBlockRadio": true, + "keyboardBlockAutoCorrect": true, + "keyboardBlockDictation": true, + "keyboardBlockPredictive": true, + "keyboardBlockShortcuts": true, + "keyboardBlockSpellCheck": true, + "kioskModeAllowAssistiveSpeak": true, + "kioskModeAllowAssistiveTouchSettings": true, + "kioskModeAllowAutoLock": true, + "kioskModeAllowColorInversionSettings": true, + "kioskModeAllowRingerSwitch": true, + "kioskModeAllowScreenRotation": true, + "kioskModeAllowSleepButton": true, + "kioskModeAllowTouchscreen": true, + "kioskModeAllowVoiceOverSettings": true, + "kioskModeAllowVolumeButtons": true, + "kioskModeAllowZoomSettings": true, + "kioskModeAppStoreUrl": "String", + "kioskModeBuiltInAppId": "String", + "kioskModeManagedAppId": "String", + "kioskModeRequireAssistiveTouch": true, + "kioskModeRequireColorInversion": true, + "kioskModeRequireMonoAudio": true, + "kioskModeRequireVoiceOver": true, + "kioskModeRequireZoom": true, + "lockScreenBlockControlCenter": true, + "lockScreenBlockNotificationView": true, + "lockScreenBlockPassbook": true, + "lockScreenBlockTodayView": true, + "mediaContentRatingApps": { + "@odata.type": "microsoft.graph.ratingAppsType" + }, + "mediaContentRatingAustralia": { + "@odata.type": "microsoft.graph.mediaContentRatingAustralia" + }, + "mediaContentRatingCanada": { + "@odata.type": "microsoft.graph.mediaContentRatingCanada" + }, + "mediaContentRatingFrance": { + "@odata.type": "microsoft.graph.mediaContentRatingFrance" + }, + "mediaContentRatingGermany": { + "@odata.type": "microsoft.graph.mediaContentRatingGermany" + }, + "mediaContentRatingIreland": { + "@odata.type": "microsoft.graph.mediaContentRatingIreland" + }, + "mediaContentRatingJapan": { + "@odata.type": "microsoft.graph.mediaContentRatingJapan" + }, + "mediaContentRatingNewZealand": { + "@odata.type": "microsoft.graph.mediaContentRatingNewZealand" + }, + "mediaContentRatingUnitedKingdom": { + "@odata.type": "microsoft.graph.mediaContentRatingUnitedKingdom" + }, + "mediaContentRatingUnitedStates": { + "@odata.type": "microsoft.graph.mediaContentRatingUnitedStates" + }, + "messagesBlocked": true, + "networkUsageRules": [ + { + "@odata.type": "microsoft.graph.iosNetworkUsageRule" + } + ], + "notificationsBlockSettingsModification": true, + "passcodeBlockFingerprintModification": true, + "passcodeBlockFingerprintUnlock": true, + "passcodeBlockModification": true, + "passcodeBlockSimple": true, + "passcodeExpirationDays": 0, + "passcodeMinimumCharacterSetCount": 0, + "passcodeMinimumLength": 0, + "passcodeMinutesOfInactivityBeforeLock": 0, + "passcodeMinutesOfInactivityBeforeScreenTimeout": 0, + "passcodePreviousPasscodeBlockCount": 0, + "passcodeRequired": true, + "passcodeRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "passcodeSignInFailureCountBeforeWipe": 0, + "podcastsBlocked": true, + "safariBlockAutofill": true, + "safariBlocked": true, + "safariBlockJavaScript": true, + "safariBlockPopups": true, + "safariCookieSettings": { + "@odata.type": "microsoft.graph.webBrowserCookieSettings" + }, + "safariManagedDomains": [ + "String" + ], + "safariPasswordAutoFillDomains": [ + "String" + ], + "safariRequireFraudWarning": true, + "screenCaptureBlocked": true, + "siriBlocked": true, + "siriBlockedWhenLocked": true, + "siriBlockUserGeneratedContent": true, + "siriRequireProfanityFilter": true, + "spotlightBlockInternetResults": true, + "voiceDialingBlocked": true, + "wallpaperBlockModification": true, + "wiFiConnectOnlyToConfiguredNetworks": true + } + }, + "microsoft.graph.mediaContentRatingAustralia": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingAustraliaMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingAustraliaTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingCanada": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingCanadaMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingCanadaTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingFrance": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingFranceMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingFranceTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingGermany": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingGermanyMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingGermanyTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingIreland": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingIrelandMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingIrelandTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingJapan": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingJapanMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingJapanTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingNewZealand": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingNewZealandMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingNewZealandTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingUnitedKingdom": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingUnitedKingdomMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingUnitedKingdomTelevisionType" + } + } + }, + "microsoft.graph.mediaContentRatingUnitedStates": { + "value": { + "movieRating": { + "@odata.type": "microsoft.graph.ratingUnitedStatesMoviesType" + }, + "tvRating": { + "@odata.type": "microsoft.graph.ratingUnitedStatesTelevisionType" + } + } + }, + "microsoft.graph.iosNetworkUsageRule": { + "value": { + "cellularDataBlocked": true, + "cellularDataBlockWhenRoaming": true, + "managedApps": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ] + } + }, + "microsoft.graph.iosUpdateConfiguration": { + "value": { + "activeHoursEnd": "TimeOfDay (timestamp)", + "activeHoursStart": "TimeOfDay (timestamp)", + "scheduledInstallDays": [ + { + "@odata.type": "microsoft.graph.dayOfWeek" + } + ], + "utcTimeOffsetInMinutes": 0 + } + }, + "microsoft.graph.macOSCustomConfiguration": { + "value": { + "payload": "AA==", + "payloadFileName": "String", + "payloadName": "String" + } + }, + "microsoft.graph.macOSGeneralDeviceConfiguration": { + "value": { + "compliantAppListType": { + "@odata.type": "microsoft.graph.appListType" + }, + "compliantAppsList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "emailInDomainSuffixes": [ + "String" + ], + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordMinutesOfInactivityBeforeScreenTimeout": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + } + } + }, + "microsoft.graph.appleDeviceFeaturesConfigurationBase": {}, + "microsoft.graph.iosDeviceFeaturesConfiguration": { + "value": { + "assetTagTemplate": "String", + "homeScreenDockIcons": [ + { + "@odata.type": "microsoft.graph.iosHomeScreenItem" + } + ], + "homeScreenPages": [ + { + "@odata.type": "microsoft.graph.iosHomeScreenPage" + } + ], + "lockScreenFootnote": "String", + "notificationSettings": [ + { + "@odata.type": "microsoft.graph.iosNotificationSettings" + } + ] + } + }, + "microsoft.graph.iosHomeScreenItem": { + "value": { + "displayName": "String" + } + }, + "microsoft.graph.iosHomeScreenPage": { + "value": { + "displayName": "String", + "icons": [ + { + "@odata.type": "microsoft.graph.iosHomeScreenItem" + } + ] + } + }, + "microsoft.graph.iosNotificationSettings": { + "value": { + "alertType": { + "@odata.type": "microsoft.graph.iosNotificationAlertType" + }, + "appName": "String", + "badgesEnabled": true, + "bundleID": "String", + "enabled": true, + "publisher": "String", + "showInNotificationCenter": true, + "showOnLockScreen": true, + "soundsEnabled": true + } + }, + "microsoft.graph.iosHomeScreenFolder": { + "value": { + "pages": [ + { + "@odata.type": "microsoft.graph.iosHomeScreenFolderPage" + } + ] + } + }, + "microsoft.graph.iosHomeScreenFolderPage": { + "value": { + "apps": [ + { + "@odata.type": "microsoft.graph.iosHomeScreenApp" + } + ], + "displayName": "String" + } + }, + "microsoft.graph.iosHomeScreenApp": { + "value": { + "bundleID": "String" + } + }, + "microsoft.graph.macOSDeviceFeaturesConfiguration": {}, + "microsoft.graph.windowsDefenderAdvancedThreatProtectionConfiguration": { + "value": { + "allowSampleSharing": true, + "enableExpeditedTelemetryReporting": true + } + }, + "microsoft.graph.editionUpgradeConfiguration": { + "value": { + "license": "String", + "licenseType": { + "@odata.type": "microsoft.graph.editionUpgradeLicenseType" + }, + "productKey": "String", + "targetEdition": { + "@odata.type": "microsoft.graph.windows10EditionType" + } + } + }, + "microsoft.graph.windows10EndpointProtectionConfiguration": { + "value": { + "applicationGuardAllowPersistence": true, + "applicationGuardAllowPrintToLocalPrinters": true, + "applicationGuardAllowPrintToNetworkPrinters": true, + "applicationGuardAllowPrintToPDF": true, + "applicationGuardAllowPrintToXPS": true, + "applicationGuardBlockClipboardSharing": { + "@odata.type": "microsoft.graph.applicationGuardBlockClipboardSharingType" + }, + "applicationGuardBlockFileTransfer": { + "@odata.type": "microsoft.graph.applicationGuardBlockFileTransferType" + }, + "applicationGuardBlockNonEnterpriseContent": true, + "applicationGuardEnabled": true, + "applicationGuardForceAuditing": true, + "appLockerApplicationControl": { + "@odata.type": "microsoft.graph.appLockerApplicationControlType" + }, + "bitLockerDisableWarningForOtherDiskEncryption": true, + "bitLockerEnableStorageCardEncryptionOnMobile": true, + "bitLockerEncryptDevice": true, + "bitLockerRemovableDrivePolicy": { + "@odata.type": "microsoft.graph.bitLockerRemovableDrivePolicy" + }, + "defenderAdditionalGuardedFolders": [ + "String" + ], + "defenderAttackSurfaceReductionExcludedPaths": [ + "String" + ], + "defenderExploitProtectionXml": "AA==", + "defenderExploitProtectionXmlFileName": "String", + "defenderGuardedFoldersAllowedAppPaths": [ + "String" + ], + "defenderSecurityCenterBlockExploitProtectionOverride": true, + "firewallBlockStatefulFTP": true, + "firewallCertificateRevocationListCheckMethod": { + "@odata.type": "microsoft.graph.firewallCertificateRevocationListCheckMethodType" + }, + "firewallIdleTimeoutForSecurityAssociationInSeconds": 0, + "firewallIPSecExemptionsAllowDHCP": true, + "firewallIPSecExemptionsAllowICMP": true, + "firewallIPSecExemptionsAllowNeighborDiscovery": true, + "firewallIPSecExemptionsAllowRouterDiscovery": true, + "firewallMergeKeyingModuleSettings": true, + "firewallPacketQueueingMethod": { + "@odata.type": "microsoft.graph.firewallPacketQueueingMethodType" + }, + "firewallPreSharedKeyEncodingMethod": { + "@odata.type": "microsoft.graph.firewallPreSharedKeyEncodingMethodType" + }, + "firewallProfileDomain": { + "@odata.type": "microsoft.graph.windowsFirewallNetworkProfile" + }, + "firewallProfilePrivate": { + "@odata.type": "microsoft.graph.windowsFirewallNetworkProfile" + }, + "firewallProfilePublic": { + "@odata.type": "microsoft.graph.windowsFirewallNetworkProfile" + }, + "smartScreenBlockOverrideForFiles": true, + "smartScreenEnableInShell": true + } + }, + "microsoft.graph.windowsFirewallNetworkProfile": { + "value": { + "authorizedApplicationRulesFromGroupPolicyMerged": true, + "connectionSecurityRulesFromGroupPolicyMerged": true, + "firewallEnabled": { + "@odata.type": "microsoft.graph.stateManagementSetting" + }, + "globalPortRulesFromGroupPolicyMerged": true, + "inboundConnectionsBlocked": true, + "inboundNotificationsBlocked": true, + "incomingTrafficBlocked": true, + "outboundConnectionsBlocked": true, + "policyRulesFromGroupPolicyMerged": true, + "securedPacketExemptionAllowed": true, + "stealthModeBlocked": true, + "unicastResponsesToMulticastBroadcastsBlocked": true + } + }, + "microsoft.graph.bitLockerRemovableDrivePolicy": { + "value": { + "blockCrossOrganizationWriteAccess": true, + "encryptionMethod": { + "@odata.type": "microsoft.graph.bitLockerEncryptionMethod" + }, + "requireEncryptionForWriteAccess": true + } + }, + "microsoft.graph.windows10GeneralConfiguration": { + "value": { + "accountsBlockAddingNonMicrosoftAccountEmail": true, + "antiTheftModeBlocked": true, + "appsAllowTrustedAppsSideloading": { + "@odata.type": "microsoft.graph.stateManagementSetting" + }, + "appsBlockWindowsStoreOriginatedApps": true, + "bluetoothAllowedServices": [ + "String" + ], + "bluetoothBlockAdvertising": true, + "bluetoothBlockDiscoverableMode": true, + "bluetoothBlocked": true, + "bluetoothBlockPrePairing": true, + "cameraBlocked": true, + "cellularBlockDataWhenRoaming": true, + "cellularBlockVpn": true, + "cellularBlockVpnWhenRoaming": true, + "certificatesBlockManualRootCertificateInstallation": true, + "connectedDevicesServiceBlocked": true, + "copyPasteBlocked": true, + "cortanaBlocked": true, + "defenderBlockEndUserAccess": true, + "defenderCloudBlockLevel": { + "@odata.type": "microsoft.graph.defenderCloudBlockLevelType" + }, + "defenderDaysBeforeDeletingQuarantinedMalware": 0, + "defenderDetectedMalwareActions": { + "@odata.type": "microsoft.graph.defenderDetectedMalwareActions" + }, + "defenderFileExtensionsToExclude": [ + "String" + ], + "defenderFilesAndFoldersToExclude": [ + "String" + ], + "defenderMonitorFileActivity": { + "@odata.type": "microsoft.graph.defenderMonitorFileActivity" + }, + "defenderProcessesToExclude": [ + "String" + ], + "defenderPromptForSampleSubmission": { + "@odata.type": "microsoft.graph.defenderPromptForSampleSubmission" + }, + "defenderRequireBehaviorMonitoring": true, + "defenderRequireCloudProtection": true, + "defenderRequireNetworkInspectionSystem": true, + "defenderRequireRealTimeMonitoring": true, + "defenderScanArchiveFiles": true, + "defenderScanDownloads": true, + "defenderScanIncomingMail": true, + "defenderScanMappedNetworkDrivesDuringFullScan": true, + "defenderScanMaxCpu": 0, + "defenderScanNetworkFiles": true, + "defenderScanRemovableDrivesDuringFullScan": true, + "defenderScanScriptsLoadedInInternetExplorer": true, + "defenderScanType": { + "@odata.type": "microsoft.graph.defenderScanType" + }, + "defenderScheduledQuickScanTime": "TimeOfDay (timestamp)", + "defenderScheduledScanTime": "TimeOfDay (timestamp)", + "defenderSignatureUpdateIntervalInHours": 0, + "defenderSystemScanSchedule": { + "@odata.type": "microsoft.graph.weeklySchedule" + }, + "developerUnlockSetting": { + "@odata.type": "microsoft.graph.stateManagementSetting" + }, + "deviceManagementBlockFactoryResetOnMobile": true, + "deviceManagementBlockManualUnenroll": true, + "diagnosticsDataSubmissionMode": { + "@odata.type": "microsoft.graph.diagnosticDataSubmissionMode" + }, + "edgeAllowStartPagesModification": true, + "edgeBlockAccessToAboutFlags": true, + "edgeBlockAddressBarDropdown": true, + "edgeBlockAutofill": true, + "edgeBlockCompatibilityList": true, + "edgeBlockDeveloperTools": true, + "edgeBlocked": true, + "edgeBlockExtensions": true, + "edgeBlockInPrivateBrowsing": true, + "edgeBlockJavaScript": true, + "edgeBlockLiveTileDataCollection": true, + "edgeBlockPasswordManager": true, + "edgeBlockPopups": true, + "edgeBlockSearchSuggestions": true, + "edgeBlockSendingDoNotTrackHeader": true, + "edgeBlockSendingIntranetTrafficToInternetExplorer": true, + "edgeClearBrowsingDataOnExit": true, + "edgeCookiePolicy": { + "@odata.type": "microsoft.graph.edgeCookiePolicy" + }, + "edgeDisableFirstRunPage": true, + "edgeEnterpriseModeSiteListLocation": "String", + "edgeFirstRunUrl": "String", + "edgeHomepageUrls": [ + "String" + ], + "edgeRequireSmartScreen": true, + "edgeSearchEngine": { + "@odata.type": "microsoft.graph.edgeSearchEngineBase" + }, + "edgeSyncFavoritesWithInternetExplorer": true, + "enterpriseCloudPrintDiscoveryEndPoint": "String", + "enterpriseCloudPrintDiscoveryMaxLimit": 0, + "enterpriseCloudPrintMopriaDiscoveryResourceIdentifier": "String", + "enterpriseCloudPrintOAuthAuthority": "String", + "enterpriseCloudPrintOAuthClientIdentifier": "String", + "enterpriseCloudPrintResourceIdentifier": "String", + "experienceBlockDeviceDiscovery": true, + "experienceBlockErrorDialogWhenNoSIM": true, + "experienceBlockTaskSwitcher": true, + "gameDvrBlocked": true, + "internetSharingBlocked": true, + "locationServicesBlocked": true, + "lockScreenAllowTimeoutConfiguration": true, + "lockScreenBlockActionCenterNotifications": true, + "lockScreenBlockCortana": true, + "lockScreenBlockToastNotifications": true, + "lockScreenTimeoutInSeconds": 0, + "logonBlockFastUserSwitching": true, + "microsoftAccountBlocked": true, + "microsoftAccountBlockSettingsSync": true, + "networkProxyApplySettingsDeviceWide": true, + "networkProxyAutomaticConfigurationUrl": "String", + "networkProxyDisableAutoDetect": true, + "networkProxyServer": { + "@odata.type": "microsoft.graph.windows10NetworkProxyServer" + }, + "nfcBlocked": true, + "oneDriveDisableFileSync": true, + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeScreenTimeout": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "passwordRequireWhenResumeFromIdleState": true, + "passwordSignInFailureCountBeforeFactoryReset": 0, + "personalizationDesktopImageUrl": "String", + "personalizationLockScreenImageUrl": "String", + "privacyAdvertisingId": { + "@odata.type": "microsoft.graph.stateManagementSetting" + }, + "privacyAutoAcceptPairingAndConsentPrompts": true, + "privacyBlockInputPersonalization": true, + "resetProtectionModeBlocked": true, + "safeSearchFilter": { + "@odata.type": "microsoft.graph.safeSearchFilterType" + }, + "screenCaptureBlocked": true, + "searchBlockDiacritics": true, + "searchDisableAutoLanguageDetection": true, + "searchDisableIndexerBackoff": true, + "searchDisableIndexingEncryptedItems": true, + "searchDisableIndexingRemovableDrive": true, + "searchEnableAutomaticIndexSizeManangement": true, + "searchEnableRemoteQueries": true, + "settingsBlockAccountsPage": true, + "settingsBlockAddProvisioningPackage": true, + "settingsBlockAppsPage": true, + "settingsBlockChangeLanguage": true, + "settingsBlockChangePowerSleep": true, + "settingsBlockChangeRegion": true, + "settingsBlockChangeSystemTime": true, + "settingsBlockDevicesPage": true, + "settingsBlockEaseOfAccessPage": true, + "settingsBlockEditDeviceName": true, + "settingsBlockGamingPage": true, + "settingsBlockNetworkInternetPage": true, + "settingsBlockPersonalizationPage": true, + "settingsBlockPrivacyPage": true, + "settingsBlockRemoveProvisioningPackage": true, + "settingsBlockSettingsApp": true, + "settingsBlockSystemPage": true, + "settingsBlockTimeLanguagePage": true, + "settingsBlockUpdateSecurityPage": true, + "sharedUserAppDataAllowed": true, + "smartScreenBlockPromptOverride": true, + "smartScreenBlockPromptOverrideForFiles": true, + "smartScreenEnableAppInstallControl": true, + "startBlockUnpinningAppsFromTaskbar": true, + "startMenuAppListVisibility": { + "@odata.type": "microsoft.graph.windowsStartMenuAppListVisibilityType" + }, + "startMenuHideChangeAccountSettings": true, + "startMenuHideFrequentlyUsedApps": true, + "startMenuHideHibernate": true, + "startMenuHideLock": true, + "startMenuHidePowerButton": true, + "startMenuHideRecentJumpLists": true, + "startMenuHideRecentlyAddedApps": true, + "startMenuHideRestartOptions": true, + "startMenuHideShutDown": true, + "startMenuHideSignOut": true, + "startMenuHideSleep": true, + "startMenuHideSwitchAccount": true, + "startMenuHideUserTile": true, + "startMenuLayoutEdgeAssetsXml": "AA==", + "startMenuLayoutXml": "AA==", + "startMenuMode": { + "@odata.type": "microsoft.graph.windowsStartMenuModeType" + }, + "startMenuPinnedFolderDocuments": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderDownloads": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderFileExplorer": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderHomeGroup": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderMusic": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderNetwork": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderPersonalFolder": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderPictures": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderSettings": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "startMenuPinnedFolderVideos": { + "@odata.type": "microsoft.graph.visibilitySetting" + }, + "storageBlockRemovableStorage": true, + "storageRequireMobileDeviceEncryption": true, + "storageRestrictAppDataToSystemVolume": true, + "storageRestrictAppInstallToSystemVolume": true, + "usbBlocked": true, + "voiceRecordingBlocked": true, + "webRtcBlockLocalhostIpAddress": true, + "wiFiBlockAutomaticConnectHotspots": true, + "wiFiBlocked": true, + "wiFiBlockManualConfiguration": true, + "wiFiScanInterval": 0, + "windowsSpotlightBlockConsumerSpecificFeatures": true, + "windowsSpotlightBlocked": true, + "windowsSpotlightBlockOnActionCenter": true, + "windowsSpotlightBlockTailoredExperiences": true, + "windowsSpotlightBlockThirdPartyNotifications": true, + "windowsSpotlightBlockWelcomeExperience": true, + "windowsSpotlightBlockWindowsTips": true, + "windowsSpotlightConfigureOnLockScreen": { + "@odata.type": "microsoft.graph.windowsSpotlightEnablementSettings" + }, + "windowsStoreBlockAutoUpdate": true, + "windowsStoreBlocked": true, + "windowsStoreEnablePrivateStoreOnly": true, + "wirelessDisplayBlockProjectionToThisDevice": true, + "wirelessDisplayBlockUserInputFromReceiver": true, + "wirelessDisplayRequirePinForPairing": true + } + }, + "microsoft.graph.defenderDetectedMalwareActions": { + "value": { + "highSeverity": { + "@odata.type": "microsoft.graph.defenderThreatAction" + }, + "lowSeverity": { + "@odata.type": "microsoft.graph.defenderThreatAction" + }, + "moderateSeverity": { + "@odata.type": "microsoft.graph.defenderThreatAction" + }, + "severeSeverity": { + "@odata.type": "microsoft.graph.defenderThreatAction" + } + } + }, + "microsoft.graph.windows10NetworkProxyServer": { + "value": { + "address": "String", + "exceptions": [ + "String" + ], + "useForLocalAddresses": true + } + }, + "microsoft.graph.edgeSearchEngineBase": {}, + "microsoft.graph.edgeSearchEngineCustom": { + "value": { + "edgeSearchEngineOpenSearchXmlUrl": "String" + } + }, + "microsoft.graph.edgeSearchEngine": { + "value": { + "edgeSearchEngineType": { + "@odata.type": "microsoft.graph.edgeSearchEngineType" + } + } + }, + "microsoft.graph.windows10CustomConfiguration": { + "value": { + "omaSettings": [ + { + "@odata.type": "microsoft.graph.omaSetting" + } + ] + } + }, + "microsoft.graph.windows10EnterpriseModernAppManagementConfiguration": { + "value": { + "uninstallBuiltInApps": true + } + }, + "microsoft.graph.sharedPCConfiguration": { + "value": { + "accountManagerPolicy": { + "@odata.type": "microsoft.graph.sharedPCAccountManagerPolicy" + }, + "allowedAccounts": { + "@odata.type": "microsoft.graph.sharedPCAllowedAccountType" + }, + "allowLocalStorage": true, + "disableAccountManager": true, + "disableEduPolicies": true, + "disablePowerPolicies": true, + "disableSignInOnResume": true, + "enabled": true, + "idleTimeBeforeSleepInSeconds": 0, + "kioskAppDisplayName": "String", + "kioskAppUserModelId": "String", + "maintenanceStartTime": "TimeOfDay (timestamp)" + } + }, + "microsoft.graph.sharedPCAccountManagerPolicy": { + "value": { + "accountDeletionPolicy": { + "@odata.type": "microsoft.graph.sharedPCAccountDeletionPolicyType" + }, + "cacheAccountsAboveDiskFreePercentage": 0, + "inactiveThresholdDays": 0, + "removeAccountsBelowDiskFreePercentage": 0 + } + }, + "microsoft.graph.windows10SecureAssessmentConfiguration": { + "value": { + "allowPrinting": true, + "allowScreenCapture": true, + "allowTextSuggestion": true, + "configurationAccount": "String", + "launchUri": "String" + } + }, + "microsoft.graph.windowsPhone81CustomConfiguration": { + "value": { + "omaSettings": [ + { + "@odata.type": "microsoft.graph.omaSetting" + } + ] + } + }, + "microsoft.graph.windowsUpdateForBusinessConfiguration": { + "value": { + "automaticUpdateMode": { + "@odata.type": "microsoft.graph.automaticUpdateMode" + }, + "businessReadyUpdatesOnly": { + "@odata.type": "microsoft.graph.windowsUpdateType" + }, + "deliveryOptimizationMode": { + "@odata.type": "microsoft.graph.windowsDeliveryOptimizationMode" + }, + "driversExcluded": true, + "featureUpdatesDeferralPeriodInDays": 0, + "featureUpdatesPaused": true, + "featureUpdatesPauseExpiryDateTime": "0001-01-01T00:00:00.0000000+00:00", + "installationSchedule": { + "@odata.type": "microsoft.graph.windowsUpdateInstallScheduleType" + }, + "microsoftUpdateServiceAllowed": true, + "prereleaseFeatures": { + "@odata.type": "microsoft.graph.prereleaseFeatures" + }, + "qualityUpdatesDeferralPeriodInDays": 0, + "qualityUpdatesPaused": true, + "qualityUpdatesPauseExpiryDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + }, + "microsoft.graph.windowsUpdateInstallScheduleType": {}, + "microsoft.graph.windowsUpdateScheduledInstall": { + "value": { + "scheduledInstallDay": { + "@odata.type": "microsoft.graph.weeklySchedule" + }, + "scheduledInstallTime": "TimeOfDay (timestamp)" + } + }, + "microsoft.graph.windowsUpdateActiveHoursInstall": { + "value": { + "activeHoursEnd": "TimeOfDay (timestamp)", + "activeHoursStart": "TimeOfDay (timestamp)" + } + }, + "microsoft.graph.windows81GeneralConfiguration": { + "value": { + "accountsBlockAddingNonMicrosoftAccountEmail": true, + "applyOnlyToWindows81": true, + "browserBlockAutofill": true, + "browserBlockAutomaticDetectionOfIntranetSites": true, + "browserBlockEnterpriseModeAccess": true, + "browserBlockJavaScript": true, + "browserBlockPlugins": true, + "browserBlockPopups": true, + "browserBlockSendingDoNotTrackHeader": true, + "browserBlockSingleWordEntryOnIntranetSites": true, + "browserEnterpriseModeSiteListLocation": "String", + "browserInternetSecurityLevel": { + "@odata.type": "microsoft.graph.internetSiteSecurityLevel" + }, + "browserIntranetSecurityLevel": { + "@odata.type": "microsoft.graph.siteSecurityLevel" + }, + "browserLoggingReportLocation": "String", + "browserRequireFirewall": true, + "browserRequireFraudWarning": true, + "browserRequireHighSecurityForRestrictedSites": true, + "browserRequireSmartScreen": true, + "browserTrustedSitesSecurityLevel": { + "@odata.type": "microsoft.graph.siteSecurityLevel" + }, + "cellularBlockDataRoaming": true, + "diagnosticsBlockDataSubmission": true, + "passwordBlockPicturePasswordAndPin": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeScreenTimeout": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "passwordSignInFailureCountBeforeFactoryReset": 0, + "storageRequireDeviceEncryption": true, + "updatesRequireAutomaticUpdates": true, + "userAccountControlSettings": { + "@odata.type": "microsoft.graph.windowsUserAccountControlSettings" + }, + "workFoldersUrl": "String" + } + }, + "microsoft.graph.windowsPhone81GeneralConfiguration": { + "value": { + "applyOnlyToWindowsPhone81": true, + "appsBlockCopyPaste": true, + "bluetoothBlocked": true, + "cameraBlocked": true, + "cellularBlockWifiTethering": true, + "compliantAppListType": { + "@odata.type": "microsoft.graph.appListType" + }, + "compliantAppsList": [ + { + "@odata.type": "microsoft.graph.appListItem" + } + ], + "diagnosticDataBlockSubmission": true, + "emailBlockAddingAccounts": true, + "locationServicesBlocked": true, + "microsoftAccountBlocked": true, + "nfcBlocked": true, + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeScreenTimeout": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "passwordSignInFailureCountBeforeFactoryReset": 0, + "screenCaptureBlocked": true, + "storageBlockRemovableStorage": true, + "storageRequireEncryption": true, + "webBrowserBlocked": true, + "wifiBlockAutomaticConnectHotspots": true, + "wifiBlocked": true, + "wifiBlockHotspotReporting": true, + "windowsStoreBlocked": true + } + }, + "microsoft.graph.windows10TeamGeneralConfiguration": { + "value": { + "azureOperationalInsightsBlockTelemetry": true, + "azureOperationalInsightsWorkspaceId": "String", + "azureOperationalInsightsWorkspaceKey": "String", + "connectAppBlockAutoLaunch": true, + "maintenanceWindowBlocked": true, + "maintenanceWindowDurationInHours": 0, + "maintenanceWindowStartTime": "TimeOfDay (timestamp)", + "miracastBlocked": true, + "miracastChannel": { + "@odata.type": "microsoft.graph.miracastChannel" + }, + "miracastRequirePin": true, + "settingsBlockMyMeetingsAndFiles": true, + "settingsBlockSessionResume": true, + "settingsBlockSigninSuggestions": true, + "settingsDefaultVolume": 0, + "settingsScreenTimeoutInMinutes": 0, + "settingsSessionTimeoutInMinutes": 0, + "settingsSleepTimeoutInMinutes": 0, + "welcomeScreenBackgroundImageUrl": "String", + "welcomeScreenBlockAutomaticWakeUp": true, + "welcomeScreenMeetingInformation": { + "@odata.type": "microsoft.graph.welcomeScreenMeetingInformation" + } + } + }, + "microsoft.graph.androidCompliancePolicy": { + "value": { + "deviceThreatProtectionEnabled": true, + "deviceThreatProtectionRequiredSecurityLevel": { + "@odata.type": "microsoft.graph.deviceThreatProtectionLevel" + }, + "minAndroidSecurityPatchLevel": "String", + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordExpirationDays": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.androidRequiredPasswordType" + }, + "securityBlockJailbrokenDevices": true, + "securityDisableUsbDebugging": true, + "securityPreventInstallAppsFromUnknownSources": true, + "securityRequireCompanyPortalAppIntegrity": true, + "securityRequireGooglePlayServices": true, + "securityRequireSafetyNetAttestationBasicIntegrity": true, + "securityRequireSafetyNetAttestationCertifiedDevice": true, + "securityRequireUpToDateSecurityProviders": true, + "securityRequireVerifyApps": true, + "storageRequireEncryption": true + } + }, + "microsoft.graph.androidWorkProfileCompliancePolicy": { + "value": { + "deviceThreatProtectionEnabled": true, + "deviceThreatProtectionRequiredSecurityLevel": { + "@odata.type": "microsoft.graph.deviceThreatProtectionLevel" + }, + "minAndroidSecurityPatchLevel": "String", + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordExpirationDays": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.androidRequiredPasswordType" + }, + "securityBlockJailbrokenDevices": true, + "securityDisableUsbDebugging": true, + "securityPreventInstallAppsFromUnknownSources": true, + "securityRequireCompanyPortalAppIntegrity": true, + "securityRequireGooglePlayServices": true, + "securityRequireSafetyNetAttestationBasicIntegrity": true, + "securityRequireSafetyNetAttestationCertifiedDevice": true, + "securityRequireUpToDateSecurityProviders": true, + "securityRequireVerifyApps": true, + "storageRequireEncryption": true + } + }, + "microsoft.graph.iosCompliancePolicy": { + "value": { + "deviceThreatProtectionEnabled": true, + "deviceThreatProtectionRequiredSecurityLevel": { + "@odata.type": "microsoft.graph.deviceThreatProtectionLevel" + }, + "managedEmailProfileRequired": true, + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passcodeBlockSimple": true, + "passcodeExpirationDays": 0, + "passcodeMinimumCharacterSetCount": 0, + "passcodeMinimumLength": 0, + "passcodeMinutesOfInactivityBeforeLock": 0, + "passcodePreviousPasscodeBlockCount": 0, + "passcodeRequired": true, + "passcodeRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "securityBlockJailbrokenDevices": true + } + }, + "microsoft.graph.macOSCompliancePolicy": { + "value": { + "deviceThreatProtectionEnabled": true, + "deviceThreatProtectionRequiredSecurityLevel": { + "@odata.type": "microsoft.graph.deviceThreatProtectionLevel" + }, + "firewallBlockAllIncoming": true, + "firewallEnabled": true, + "firewallEnableStealthMode": true, + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "storageRequireEncryption": true, + "systemIntegrityProtectionEnabled": true + } + }, + "microsoft.graph.windows10CompliancePolicy": { + "value": { + "bitLockerEnabled": true, + "codeIntegrityEnabled": true, + "earlyLaunchAntiMalwareDriverEnabled": true, + "mobileOsMaximumVersion": "String", + "mobileOsMinimumVersion": "String", + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredToUnlockFromIdle": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "requireHealthyDeviceReport": true, + "secureBootEnabled": true, + "storageRequireEncryption": true + } + }, + "microsoft.graph.windows10MobileCompliancePolicy": { + "value": { + "bitLockerEnabled": true, + "codeIntegrityEnabled": true, + "earlyLaunchAntiMalwareDriverEnabled": true, + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "passwordRequireToUnlockFromIdle": true, + "secureBootEnabled": true, + "storageRequireEncryption": true + } + }, + "microsoft.graph.windows81CompliancePolicy": { + "value": { + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "storageRequireEncryption": true + } + }, + "microsoft.graph.windowsPhone81CompliancePolicy": { + "value": { + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "passwordBlockSimple": true, + "passwordExpirationDays": 0, + "passwordMinimumCharacterSetCount": 0, + "passwordMinimumLength": 0, + "passwordMinutesOfInactivityBeforeLock": 0, + "passwordPreviousPasswordBlockCount": 0, + "passwordRequired": true, + "passwordRequiredType": { + "@odata.type": "microsoft.graph.requiredPasswordType" + }, + "storageRequireEncryption": true + } + }, + "microsoft.graph.deviceComplianceSettingState": { + "value": { + "complianceGracePeriodExpirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "deviceId": "String", + "deviceModel": "String", + "deviceName": "String", + "setting": "String", + "settingName": "String", + "state": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userEmail": "String", + "userId": "String", + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.deviceConfigurationSettingState": { + "value": { + "currentValue": "String", + "errorCode": 0, + "errorDescription": "String", + "instanceDisplayName": "String", + "setting": "String", + "settingName": "String", + "sources": [ + { + "@odata.type": "microsoft.graph.settingSource" + } + ], + "state": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userEmail": "String", + "userId": "String", + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.settingSource": { + "value": { + "displayName": "String", + "id": "String" + } + }, + "microsoft.graph.deviceCompliancePolicySettingState": { + "value": { + "currentValue": "String", + "errorCode": 0, + "errorDescription": "String", + "instanceDisplayName": "String", + "setting": "String", + "settingName": "String", + "sources": [ + { + "@odata.type": "microsoft.graph.settingSource" + } + ], + "state": { + "@odata.type": "microsoft.graph.complianceStatus" + }, + "userEmail": "String", + "userId": "String", + "userName": "String", + "userPrincipalName": "String" + } + }, + "microsoft.graph.enrollmentConfigurationAssignment": { + "value": { + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.deviceEnrollmentLimitConfiguration": { + "value": { + "limit": 0 + } + }, + "microsoft.graph.deviceEnrollmentPlatformRestrictionsConfiguration": { + "value": { + "androidRestriction": { + "@odata.type": "microsoft.graph.deviceEnrollmentPlatformRestriction" + }, + "iosRestriction": { + "@odata.type": "microsoft.graph.deviceEnrollmentPlatformRestriction" + }, + "macOSRestriction": { + "@odata.type": "microsoft.graph.deviceEnrollmentPlatformRestriction" + }, + "windowsMobileRestriction": { + "@odata.type": "microsoft.graph.deviceEnrollmentPlatformRestriction" + }, + "windowsRestriction": { + "@odata.type": "microsoft.graph.deviceEnrollmentPlatformRestriction" + } + } + }, + "microsoft.graph.deviceEnrollmentPlatformRestriction": { + "value": { + "osMaximumVersion": "String", + "osMinimumVersion": "String", + "personalDeviceEnrollmentBlocked": true, + "platformBlocked": true + } + }, + "microsoft.graph.deviceEnrollmentWindowsHelloForBusinessConfiguration": { + "value": { + "enhancedBiometricsState": { + "@odata.type": "microsoft.graph.enablement" + }, + "pinExpirationInDays": 0, + "pinLowercaseCharactersUsage": { + "@odata.type": "microsoft.graph.windowsHelloForBusinessPinUsage" + }, + "pinMaximumLength": 0, + "pinMinimumLength": 0, + "pinPreviousBlockCount": 0, + "pinSpecialCharactersUsage": { + "@odata.type": "microsoft.graph.windowsHelloForBusinessPinUsage" + }, + "pinUppercaseCharactersUsage": { + "@odata.type": "microsoft.graph.windowsHelloForBusinessPinUsage" + }, + "remotePassportEnabled": true, + "securityDeviceRequired": true, + "state": { + "@odata.type": "microsoft.graph.enablement" + }, + "unlockWithBiometricsEnabled": true + } + }, + "microsoft.graph.managedMobileApp": { + "value": { + "mobileAppIdentifier": { + "@odata.type": "microsoft.graph.mobileAppIdentifier" + }, + "version": "String" + } + }, + "microsoft.graph.mobileAppIdentifier": {}, + "microsoft.graph.targetedManagedAppPolicyAssignment": { + "value": { + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.managedAppDiagnosticStatus": { + "value": { + "mitigationInstruction": "String", + "state": "String", + "validationName": "String" + } + }, + "microsoft.graph.managedAppOperation": { + "value": { + "displayName": "String", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "state": "String", + "version": "String" + } + }, + "microsoft.graph.keyValuePair": { + "value": { + "name": "String", + "value": "String" + } + }, + "microsoft.graph.managedAppPolicyDeploymentSummary": { + "value": { + "configurationDeployedUserCount": 0, + "configurationDeploymentSummaryPerApp": [ + { + "@odata.type": "microsoft.graph.managedAppPolicyDeploymentSummaryPerApp" + } + ], + "displayName": "String", + "lastRefreshTime": "0001-01-01T00:00:00.0000000+00:00", + "version": "String" + } + }, + "microsoft.graph.windowsInformationProtectionResourceCollection": { + "value": { + "displayName": "String", + "resources": [ + "String" + ] + } + }, + "microsoft.graph.windowsInformationProtectionDataRecoveryCertificate": { + "value": { + "certificate": "AA==", + "description": "String", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "subjectName": "String" + } + }, + "microsoft.graph.windowsInformationProtectionApp": { + "value": { + "denied": true, + "description": "String", + "displayName": "String", + "productName": "String", + "publisherName": "String" + } + }, + "microsoft.graph.windowsInformationProtectionProxiedDomainCollection": { + "value": { + "displayName": "String", + "proxiedDomains": [ + { + "@odata.type": "microsoft.graph.proxiedDomain" + } + ] + } + }, + "microsoft.graph.proxiedDomain": { + "value": { + "ipAddressOrFQDN": "String", + "proxy": "String" + } + }, + "microsoft.graph.windowsInformationProtectionIPRangeCollection": { + "value": { + "displayName": "String", + "ranges": [ + { + "@odata.type": "microsoft.graph.ipRange" + } + ] + } + }, + "microsoft.graph.ipRange": {}, + "microsoft.graph.windowsInformationProtectionAppLockerFile": { + "value": { + "displayName": "String", + "file": "AA==", + "fileHash": "String", + "version": "String" + } + }, + "microsoft.graph.androidMobileAppIdentifier": { + "value": { + "packageId": "String" + } + }, + "microsoft.graph.iosMobileAppIdentifier": { + "value": { + "bundleId": "String" + } + }, + "microsoft.graph.managedAppPolicyDeploymentSummaryPerApp": { + "value": { + "configurationAppliedUserCount": 0, + "mobileAppIdentifier": { + "@odata.type": "microsoft.graph.mobileAppIdentifier" + } + } + }, + "microsoft.graph.windowsInformationProtectionStoreApp": {}, + "microsoft.graph.windowsInformationProtectionDesktopApp": { + "value": { + "binaryName": "String", + "binaryVersionHigh": "String", + "binaryVersionLow": "String" + } + }, + "microsoft.graph.iPv6Range": { + "value": { + "lowerAddress": "String", + "upperAddress": "String" + } + }, + "microsoft.graph.iPv4Range": { + "value": { + "lowerAddress": "String", + "upperAddress": "String" + } + }, + "microsoft.graph.iosManagedAppRegistration": {}, + "microsoft.graph.androidManagedAppRegistration": {}, + "microsoft.graph.managedAppStatusRaw": { + "value": { + "content": { + "@odata.type": "Json" + } + } + }, + "microsoft.graph.localizedNotificationMessage": { + "value": { + "isDefault": true, + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "locale": "String", + "messageTemplate": "String", + "subject": "String" + } + }, + "microsoft.graph.rolePermission": { + "value": { + "resourceActions": [ + { + "@odata.type": "microsoft.graph.resourceAction" + } + ] + } + }, + "microsoft.graph.resourceAction": { + "value": { + "allowedResourceActions": [ + "String" + ], + "notAllowedResourceActions": [ + "String" + ] + } + }, + "microsoft.graph.deviceAndAppManagementRoleDefinition": {}, + "microsoft.graph.managedEBookAssignment": { + "value": { + "installIntent": { + "@odata.type": "microsoft.graph.installIntent" + }, + "target": { + "@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget" + } + } + }, + "microsoft.graph.eBookInstallSummary": { + "value": { + "failedDeviceCount": 0, + "failedUserCount": 0, + "installedDeviceCount": 0, + "installedUserCount": 0, + "notInstalledDeviceCount": 0, + "notInstalledUserCount": 0 + } + }, + "microsoft.graph.deviceInstallState": { + "value": { + "deviceId": "String", + "deviceName": "String", + "errorCode": "String", + "installState": { + "@odata.type": "microsoft.graph.installState" + }, + "lastSyncDateTime": "0001-01-01T00:00:00.0000000+00:00", + "osDescription": "String", + "osVersion": "String", + "userName": "String" + } + }, + "microsoft.graph.userInstallStateSummary": { + "value": { + "deviceStates": [ + { + "@odata.type": "microsoft.graph.deviceInstallState" + } + ], + "failedDeviceCount": 0, + "installedDeviceCount": 0, + "notInstalledDeviceCount": 0, + "userName": "String" + } + }, + "microsoft.graph.iosVppEBookAssignment": {}, + "microsoft.graph.iosVppEBook": { + "value": { + "appleId": "String", + "genres": [ + "String" + ], + "language": "String", + "seller": "String", + "totalLicenseCount": 0, + "usedLicenseCount": 0, + "vppOrganizationName": "String", + "vppTokenId": "00000000-0000-0000-0000-000000000000" + } + }, + "microsoft.graph.enrollmentTroubleshootingEvent": { + "value": { + "deviceId": "String", + "enrollmentType": { + "@odata.type": "microsoft.graph.deviceEnrollmentType" + }, + "failureCategory": { + "@odata.type": "microsoft.graph.deviceEnrollmentFailureReason" + }, + "failureReason": "String", + "managedDeviceIdentifier": "String", + "operatingSystem": "String", + "osVersion": "String", + "userId": "String" + } + }, + "microsoft.graph.activityHistoryItem": { + "value": { + "activeDurationSeconds": 0, + "activity": { + "@odata.type": "microsoft.graph.userActivity" + }, + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "expirationDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastActiveDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "startedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "status": { + "@odata.type": "microsoft.graph.status" + }, + "userTimezone": "String" + } + }, + "microsoft.graph.imageInfo": { + "value": { + "addImageQuery": true, + "alternateText": "String", + "alternativeText": "String", + "iconUrl": "String" + } + }, + "microsoft.graph.visualInfo": { + "value": { + "attribution": { + "@odata.type": "microsoft.graph.imageInfo" + }, + "backgroundColor": "String", + "content": { + "@odata.type": "Json" + }, + "description": "String", + "displayText": "String" + } + }, + "microsoft.graph.security": { + "value": { + "alerts": [ + { + "@odata.type": "microsoft.graph.alert" + } + ] + } + }, + "microsoft.graph.alert": { + "value": { + "activityGroupName": "String", + "assignedTo": "String", + "azureSubscriptionId": "String", + "azureTenantId": "String", + "category": "String", + "closedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "cloudAppStates": [ + { + "@odata.type": "microsoft.graph.cloudAppSecurityState" + } + ], + "comments": [ + "String" + ], + "confidence": 0, + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "description": "String", + "detectionIds": [ + "String" + ], + "eventDateTime": "0001-01-01T00:00:00.0000000+00:00", + "feedback": { + "@odata.type": "microsoft.graph.alertFeedback" + }, + "fileStates": [ + { + "@odata.type": "microsoft.graph.fileSecurityState" + } + ], + "hostStates": [ + { + "@odata.type": "microsoft.graph.hostSecurityState" + } + ], + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "malwareStates": [ + { + "@odata.type": "microsoft.graph.malwareState" + } + ], + "networkConnections": [ + { + "@odata.type": "microsoft.graph.networkConnection" + } + ], + "processes": [ + { + "@odata.type": "microsoft.graph.process" + } + ], + "recommendedActions": [ + "String" + ], + "registryKeyStates": [ + { + "@odata.type": "microsoft.graph.registryKeyState" + } + ], + "severity": { + "@odata.type": "microsoft.graph.alertSeverity" + }, + "sourceMaterials": [ + "String" + ], + "status": { + "@odata.type": "microsoft.graph.alertStatus" + }, + "tags": [ + "String" + ], + "title": "String", + "triggers": [ + { + "@odata.type": "microsoft.graph.alertTrigger" + } + ], + "userStates": [ + { + "@odata.type": "microsoft.graph.userSecurityState" + } + ], + "vendorInformation": { + "@odata.type": "microsoft.graph.securityVendorInformation" + }, + "vulnerabilityStates": [ + { + "@odata.type": "microsoft.graph.vulnerabilityState" + } + ] + } + }, + "microsoft.graph.cloudAppSecurityState": { + "value": { + "destinationServiceIp": "String", + "destinationServiceName": "String", + "riskScore": "String" + } + }, + "microsoft.graph.fileSecurityState": { + "value": { + "fileHash": { + "@odata.type": "microsoft.graph.fileHash" + }, + "name": "String", + "path": "String", + "riskScore": "String" + } + }, + "microsoft.graph.fileHash": { + "value": { + "hashType": { + "@odata.type": "microsoft.graph.fileHashType" + }, + "hashValue": "String" + } + }, + "microsoft.graph.hostSecurityState": { + "value": { + "fqdn": "String", + "isAzureAdJoined": true, + "isAzureAdRegistered": true, + "isHybridAzureDomainJoined": true, + "netBiosName": "String", + "os": "String", + "privateIpAddress": "String", + "publicIpAddress": "String", + "riskScore": "String" + } + }, + "microsoft.graph.malwareState": { + "value": { + "category": "String", + "family": "String", + "name": "String", + "severity": "String", + "wasRunning": true + } + }, + "microsoft.graph.networkConnection": { + "value": { + "applicationName": "String", + "destinationAddress": "String", + "destinationDomain": "String", + "destinationPort": "String", + "destinationUrl": "String", + "direction": { + "@odata.type": "microsoft.graph.connectionDirection" + }, + "domainRegisteredDateTime": "0001-01-01T00:00:00.0000000+00:00", + "localDnsName": "String", + "natDestinationAddress": "String", + "natDestinationPort": "String", + "natSourceAddress": "String", + "natSourcePort": "String", + "protocol": { + "@odata.type": "microsoft.graph.securityNetworkProtocol" + }, + "riskScore": "String", + "sourceAddress": "String", + "sourcePort": "String", + "status": { + "@odata.type": "microsoft.graph.connectionStatus" + }, + "urlParameters": "String" + } + }, + "microsoft.graph.process": { + "value": { + "accountName": "String", + "commandLine": "String", + "createdDateTime": "0001-01-01T00:00:00.0000000+00:00", + "fileHash": { + "@odata.type": "microsoft.graph.fileHash" + }, + "integrityLevel": { + "@odata.type": "microsoft.graph.processIntegrityLevel" + }, + "isElevated": true, + "name": "String", + "parentProcessCreatedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "parentProcessId": 0, + "parentProcessName": "String", + "path": "String", + "processId": 0 + } + }, + "microsoft.graph.registryKeyState": { + "value": { + "hive": { + "@odata.type": "microsoft.graph.registryHive" + }, + "key": "String", + "oldKey": "String", + "oldValueData": "String", + "oldValueName": "String", + "operation": { + "@odata.type": "microsoft.graph.registryOperation" + }, + "processId": 0, + "valueData": "String", + "valueName": "String", + "valueType": { + "@odata.type": "microsoft.graph.registryValueType" + } + } + }, + "microsoft.graph.alertTrigger": { + "value": { + "name": "String", + "type": "String", + "value": "String" + } + }, + "microsoft.graph.userSecurityState": { + "value": { + "aadUserId": "String", + "accountName": "String", + "domainName": "String", + "emailRole": { + "@odata.type": "microsoft.graph.emailRole" + }, + "isVpn": true, + "logonDateTime": "0001-01-01T00:00:00.0000000+00:00", + "logonId": "String", + "logonIp": "String", + "logonLocation": "String", + "logonType": { + "@odata.type": "microsoft.graph.logonType" + }, + "onPremisesSecurityIdentifier": "String", + "riskScore": "String", + "userAccountType": { + "@odata.type": "microsoft.graph.userAccountSecurityType" + }, + "userPrincipalName": "String" + } + }, + "microsoft.graph.securityVendorInformation": { + "value": { + "provider": "String", + "providerVersion": "String", + "subProvider": "String", + "vendor": "String" + } + }, + "microsoft.graph.vulnerabilityState": { + "value": { + "cve": "String", + "severity": "String", + "wasRunning": true + } + }, + "microsoft.graph.trending": { + "value": { + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "resource": { + "@odata.type": "Entity" + }, + "resourceReference": { + "@odata.type": "microsoft.graph.resourceReference" + }, + "resourceVisualization": { + "@odata.type": "microsoft.graph.resourceVisualization" + }, + "weight": 0 + } + }, + "microsoft.graph.sharedInsight": { + "value": { + "lastShared": { + "@odata.type": "microsoft.graph.sharingDetail" + }, + "lastSharedMethod": { + "@odata.type": "Entity" + }, + "resource": { + "@odata.type": "Entity" + }, + "resourceReference": { + "@odata.type": "microsoft.graph.resourceReference" + }, + "resourceVisualization": { + "@odata.type": "microsoft.graph.resourceVisualization" + }, + "sharingHistory": [ + { + "@odata.type": "microsoft.graph.sharingDetail" + } + ] + } + }, + "microsoft.graph.usedInsight": { + "value": { + "lastUsed": { + "@odata.type": "microsoft.graph.usageDetails" + }, + "resource": { + "@odata.type": "Entity" + }, + "resourceReference": { + "@odata.type": "microsoft.graph.resourceReference" + }, + "resourceVisualization": { + "@odata.type": "microsoft.graph.resourceVisualization" + } + } + }, + "microsoft.graph.resourceVisualization": { + "value": { + "containerDisplayName": "String", + "containerType": "String", + "containerWebUrl": "String", + "mediaType": "String", + "previewImageUrl": "String", + "previewText": "String", + "title": "String", + "type": "String" + } + }, + "microsoft.graph.resourceReference": { + "value": { + "id": "String", + "type": "String", + "webUrl": "String" + } + }, + "microsoft.graph.sharingDetail": { + "value": { + "sharedBy": { + "@odata.type": "microsoft.graph.insightIdentity" + }, + "sharedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "sharingReference": { + "@odata.type": "microsoft.graph.resourceReference" + }, + "sharingSubject": "String", + "sharingType": "String" + } + }, + "microsoft.graph.insightIdentity": { + "value": { + "address": "String", + "displayName": "String", + "id": "String" + } + }, + "microsoft.graph.usageDetails": { + "value": { + "lastAccessedDateTime": "0001-01-01T00:00:00.0000000+00:00", + "lastModifiedDateTime": "0001-01-01T00:00:00.0000000+00:00" + } + } + } + }, + "tags": [ + { + "name": "contracts.contract", + "x-ms-docs-toc-type": "page" + }, + { + "name": "contracts.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "deviceAppManagement.deviceAppManagement", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.androidManagedAppProtection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.androidManagedAppProtections.managedMobileApp", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.androidManagedAppProtections.managedAppPolicyDeploymentSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.defaultManagedAppProtection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.defaultManagedAppProtections.managedMobileApp", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.defaultManagedAppProtections.managedAppPolicyDeploymentSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.iosManagedAppProtection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.iosManagedAppProtections.managedMobileApp", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.iosManagedAppProtections.managedAppPolicyDeploymentSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedAppPolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "deviceAppManagement.managedAppRegistration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedAppRegistrations.managedAppPolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedAppRegistrations.managedAppOperation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "deviceAppManagement.managedAppStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedEBook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedEBooks.managedEBookAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedEBooks.deviceInstallState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedEBooks.eBookInstallSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedEBooks.userInstallStateSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedEBooks.userStateSummary.deviceInstallState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mdmWindowsInformationProtectionPolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileAppCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.managedDeviceMobileAppConfiguration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationDeviceSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfigurationUserSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileApp", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileApps.mobileAppAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.mobileApps.mobileAppCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.targetedManagedAppConfiguration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.targetedManagedAppConfigurations.managedMobileApp", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppPolicyAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.targetedManagedAppConfigurations.managedAppPolicyDeploymentSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.vppToken", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceAppManagement.windowsInformationProtectionPolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceManagement", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.applePushNotificationCertificate", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "deviceManagement.onPremisesConditionalAccessSettings", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.detectedApp", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.detectedApps.managedDevice", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.deviceCompliancePolicyAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.settingStateDeviceSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.deviceComplianceDeviceOverview", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.deviceComplianceScheduledActionForRule", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.deviceComplianceActionItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.deviceComplianceUserStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicies.deviceComplianceUserOverview", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicyDeviceStateSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicySettingStateSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurationDeviceStateSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfiguration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurations.deviceConfigurationAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurations.settingStateDeviceSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurations.deviceConfigurationDeviceStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurations.deviceConfigurationDeviceOverview", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurations.deviceConfigurationUserStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceConfigurations.deviceConfigurationUserOverview", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceEnrollmentConfiguration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceEnrollmentConfigurations.enrollmentConfigurationAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceManagementPartner", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceManagementExchangeConnector", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.iosUpdateDeviceStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.managedDeviceOverview", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.managedDevice", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.managedDevices.deviceCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.managedDevices.deviceCompliancePolicyState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.managedDevices.deviceConfigurationState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.mobileThreatDefenseConnector", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.notificationMessageTemplate", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.notificationMessageTemplates.localizedNotificationMessage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.remoteAssistancePartner", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.resourceOperation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceAndAppManagementRoleAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.roleDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.roleDefinitions.roleAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.roleDefinitions.roleAssignments.roleDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.softwareUpdateStatusSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.telecomExpenseManagementPartner", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.termsAndConditions", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.termsAndConditions.termsAndConditionsAcceptanceStatus", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.termsAndConditions.acceptanceStatuses.termsAndConditions", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.termsAndConditions.termsAndConditionsAssignment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.deviceManagementTroubleshootingEvent", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.windowsInformationProtectionAppLearningSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "deviceManagement.windowsInformationProtectionNetworkLearningSummary", + "x-ms-docs-toc-type": "page" + }, + { + "name": "devices.device", + "x-ms-docs-toc-type": "page" + }, + { + "name": "devices.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "devices.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "devices.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directory.directory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directory.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directoryObjects.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directoryObjects.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "directoryRoles.directoryRole", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directoryRoles.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directoryRoles.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "directoryRoleTemplates.directoryRoleTemplate", + "x-ms-docs-toc-type": "page" + }, + { + "name": "directoryRoleTemplates.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "domainDnsRecords.domainDnsRecord", + "x-ms-docs-toc-type": "page" + }, + { + "name": "domains.domain", + "x-ms-docs-toc-type": "page" + }, + { + "name": "domains.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "domains.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "domains.domainDnsRecord", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.columnDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.contentType", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.contentTypes.columnLink", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.listItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.items.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.items.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.list.items.listItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drive.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "drive.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "drives.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.columnDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.contentType", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.contentTypes.columnLink", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.listItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.items.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.items.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.list.items.listItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "drives.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "drives.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "education.educationRoot", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.educationClass", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.classes.group", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.classes.educationUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.classes.educationSchool", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.educationUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.me.educationClass", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.me.educationSchool", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.me.user", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.educationSchool", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.schools.educationClass", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.schools.educationUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.users.educationClass", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.users.educationSchool", + "x-ms-docs-toc-type": "page" + }, + { + "name": "education.users.user", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groupLifecyclePolicies.groupLifecyclePolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groupLifecyclePolicies.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "groups.group", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "groups.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "groups.calendar.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.conversation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.conversations.conversationThread", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.conversations.threads.post", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.groupLifecyclePolicy", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.notebooks.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.notebooks.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.onenoteOperation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.pages.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.pages.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.onenoteResource", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sectionGroups.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sectionGroups.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sectionGroups.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sections.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sections.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.onenote.sections.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.plannerGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.planner.plannerPlan", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.groupSetting", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.site", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.conversationThread", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.threads.post", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.threads.posts.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.threads.posts.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.threads.posts.post", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.threads.posts.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groups.threads.posts.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groupSettings.groupSetting", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groupSettingTemplates.groupSettingTemplate", + "x-ms-docs-toc-type": "page" + }, + { + "name": "groupSettingTemplates.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "invitations.invitation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "invitations.user", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.user", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.userActivity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.activities.activityHistoryItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.activities.historyItems.userActivity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "me.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "me.calendar.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarGroups.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarGroups.calendars.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarGroups.calendars.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarGroups.calendars.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendars.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.contactFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.contact", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.contacts.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.contacts.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.contacts.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.contacts.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contactFolders.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contact", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contacts.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contacts.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contacts.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.contacts.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.deviceManagementTroubleshootingEvent", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.inferenceClassification", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.inferenceClassification.inferenceClassificationOverride", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.officeGraphInsights", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.insights.sharedInsight", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.insights.shared.entity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.insights.trending", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.insights.trending.entity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.insights.usedInsight", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.insights.used.entity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.licenseDetails", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.mailFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.messageRule", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.message", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.messages.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.messages.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.messages.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.messages.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.mailFolders.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.managedAppRegistration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.managedDevice", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.managedDevices.deviceCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.managedDevices.deviceCompliancePolicyState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.managedDevices.deviceConfigurationState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.message", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.messages.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.messages.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.messages.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.messages.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.notebooks.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.notebooks.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.onenoteOperation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.pages.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.pages.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.onenoteResource", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sectionGroups.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sectionGroups.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sectionGroups.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sections.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sections.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.onenote.sections.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.outlookUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.outlook.outlookCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.person", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.plannerUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.planner.plannerPlan", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.planner.plannerTask", + "x-ms-docs-toc-type": "page" + }, + { + "name": "me.userSettings", + "x-ms-docs-toc-type": "page" + }, + { + "name": "organization.organization", + "x-ms-docs-toc-type": "page" + }, + { + "name": "organization.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "organization.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "planner.planner", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.plannerBucket", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.buckets.plannerTask", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.plannerPlan", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.plans.plannerBucket", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.plans.plannerPlanDetails", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.plans.plannerTask", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.plannerTask", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.tasks.plannerAssignedToTaskBoardTaskFormat", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.tasks.plannerBucketTaskBoardTaskFormat", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.tasks.plannerTaskDetails", + "x-ms-docs-toc-type": "page" + }, + { + "name": "planner.tasks.plannerProgressTaskBoardTaskFormat", + "x-ms-docs-toc-type": "page" + }, + { + "name": "reports.reportRoot", + "x-ms-docs-toc-type": "page" + }, + { + "name": "reports.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "schemaExtensions.schemaExtension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "Security.security", + "x-ms-docs-toc-type": "page" + }, + { + "name": "Security.alert", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.sharedDriveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.columnDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.contentType", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.contentTypes.columnLink", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.listItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.items.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.items.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.list.items.listItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "shares.listItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.listItem.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.listItem.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.listItem.listItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.listItem.versions.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "shares.site", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.site", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.columnDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.contentType", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.contentTypes.columnLink", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.baseItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.list", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.columnDefinition", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.contentType", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.contentTypes.columnLink", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.listItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.items.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.items.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.lists.items.listItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "sites.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "sites.onenote", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.notebooks.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.notebooks.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.onenoteOperation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.pages.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.pages.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.onenoteResource", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sectionGroups.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sectionGroups.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sectionGroups.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sections.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sections.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "sites.onenote.sections.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "subscribedSkus.subscribedSku", + "x-ms-docs-toc-type": "page" + }, + { + "name": "subscriptions.subscription", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.user", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.userActivity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.activities.activityHistoryItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.activities.historyItems.userActivity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "users.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "users.calendar.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarGroups.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarGroups.calendars.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarGroups.calendars.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarGroups.calendars.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendars.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.calendarView.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.contactFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.contact", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.contacts.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.contacts.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.contacts.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.contacts.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contactFolders.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contact", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contacts.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contacts.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contacts.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.contacts.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.directoryObject", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.deviceManagementTroubleshootingEvent", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.drive", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.calendar", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.calendar.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.calendar.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.calendar.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.event", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.events.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.inferenceClassification", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.inferenceClassification.inferenceClassificationOverride", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.officeGraphInsights", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.insights.sharedInsight", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.insights.shared.entity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.insights.trending", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.insights.trending.entity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.insights.usedInsight", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.insights.used.entity", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.licenseDetails", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.mailFolder", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.messageRule", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.message", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.messages.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.messages.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.messages.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.messages.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.mailFolders.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.managedAppRegistration", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.managedDevice", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.managedDevices.deviceCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.managedDevices.deviceCompliancePolicyState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.managedDevices.deviceConfigurationState", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.message", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.messages.attachment", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.messages.extension", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.messages.multiValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.messages.singleValueLegacyExtendedProperty", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.notebooks.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.notebooks.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.onenoteOperation", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.pages.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.pages.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.onenoteResource", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sectionGroups.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sectionGroups.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sectionGroups.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.onenoteSection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sections.onenotePage", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sections.notebook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.onenote.sections.sectionGroup", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.outlookUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.outlook.outlookCategory", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.person", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.profilePhoto", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.plannerUser", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.planner.plannerPlan", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.planner.plannerTask", + "x-ms-docs-toc-type": "page" + }, + { + "name": "users.userSettings", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.listItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.listItem.driveItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.listItem.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.listItem.listItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.listItem.versions.fieldValueSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.Actions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "workbooks.Functions", + "x-ms-docs-toc-type": "container" + }, + { + "name": "workbooks.permission", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.thumbnailSet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.driveItemVersion", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.workbookApplication", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.workbookFunctions", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.workbookNamedItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.names.workbookWorksheet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.workbookTable", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.tables.workbookTableColumn", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.tables.workbookTableRow", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.tables.workbookTableSort", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.tables.workbookWorksheet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.workbookWorksheet", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.worksheets.workbookChart", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.worksheets.workbookNamedItem", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.worksheets.workbookPivotTable", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.worksheets.workbookWorksheetProtection", + "x-ms-docs-toc-type": "page" + }, + { + "name": "workbooks.workbook.worksheets.workbookTable", + "x-ms-docs-toc-type": "page" + } + ] +} diff --git a/docs/setup/resources/add_app_permission.png b/docs/setup/resources/add_app_permission.png new file mode 100644 index 0000000..932ef39 Binary files /dev/null and b/docs/setup/resources/add_app_permission.png differ diff --git a/docs/setup/resources/create_client_secrets.png b/docs/setup/resources/create_client_secrets.png new file mode 100644 index 0000000..d73ab43 Binary files /dev/null and b/docs/setup/resources/create_client_secrets.png differ diff --git a/docs/setup/resources/deatils_of_app.png b/docs/setup/resources/deatils_of_app.png new file mode 100644 index 0000000..5191917 Binary files /dev/null and b/docs/setup/resources/deatils_of_app.png differ diff --git a/docs/setup/resources/register_app.png b/docs/setup/resources/register_app.png new file mode 100644 index 0000000..a73a3ed Binary files /dev/null and b/docs/setup/resources/register_app.png differ diff --git a/examples/README.md b/examples/README.md index 28ec345..5e6e412 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,34 +1,57 @@ # Examples -This directory contains a collection of sample code examples written in Ballerina. These examples demonstrate various -use cases of the module. You can follow the instructions below to build and run these examples. +The `excel` connector provides practical example to demonstrates how to use the connector to connect to Excel files and work with data within them. The connector allows you to import and export data, manipulate workbooks and worksheets, and even create new Excel files from scratch. -## Running an Example +This example covers several key features of the connector, including: + +- Creating new worksheets and table +- Writing data to Excel sheets +- Create a chart -Execute the following commands to build an example from the source. +## Prerequisites -* To build an example +1. Follow the [instructions](https://github.com/ballerina-platform/module-ballerinax-microsoft.excel#set-up-excel-api) to set up the Excel API. - `bal build ` +2. Create a `config.toml` file with your credential. Here's an example of how your `config.toml` file should look: + ```toml + refreshToken="" + clientId="" + clientSecret="" + workbookId="" + refreshUrl="" + ``` -* To run an example +## Running an Example - `bal run ` +Execute the following commands to build an example from the source: -## Building the Examples with the Local Module +* To build an example: -**Warning**: Because of the absence of support for reading local repositories for single Ballerina files, the bala of -the module is manually written to the central repository as a workaround. Consequently, the bash script may modify your -local Ballerina repositories. + ```bash + bal build + ``` + +* To run an example: + + ```bash + bal run + ``` + +## Building the Examples with the Local Module -Execute the following commands to build all the examples against the changes you have made to the module locally. +**Warning**: Due to the absence of support for reading local repositories for single Ballerina files, the Bala of the module is manually written to the central repository as a workaround. Consequently, the bash script may modify your local Ballerina repositories. -* To build all the examples +Execute the following commands to build all the examples against the changes you have made to the module locally: - `./build.sh build` +* To build all the examples: + ```bash + ./build.sh build + ``` -* To run all the examples +* To run all the examples: - `./build.sh run` \ No newline at end of file + ```bash + ./build.sh run + ``` diff --git a/examples/add_chart.bal b/examples/add_chart.bal deleted file mode 100644 index 4be3e31..0000000 --- a/examples/add_chart.bal +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Chart|error response = excelClient->addChart(workbookIdOrPath, "worksheetName", "ColumnStacked", "A1:B2", - excel:AUTO); - if (response is excel:Chart) { - log:printInfo(response.toString()); - } -} diff --git a/examples/add_table.bal b/examples/add_table.bal deleted file mode 100644 index c89de25..0000000 --- a/examples/add_table.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Table|error response = excelClient->addTable(workbookIdOrPath, "worksheetName", "A1:C3"); - if (response is excel:Table) { - log:printInfo(response.toString()); - } -} diff --git a/examples/add_worksheet.bal b/examples/add_worksheet.bal deleted file mode 100644 index 1b98f96..0000000 --- a/examples/add_worksheet.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Worksheet|error response = excelClient->addWorksheet(workbookIdOrPath, "sheetName"); - if (response is excel:Worksheet) { - log:printInfo(response.toString()); - } -} diff --git a/examples/build.sh b/examples/build.sh index f533627..ccca99e 100755 --- a/examples/build.sh +++ b/examples/build.sh @@ -28,7 +28,7 @@ cd "$BAL_HOME_DIR" && bal push --repository=local # Remove the cache directories in the repositories -cacheDirs=($(ls -d "$BAL_CENTRAL_DIR"/cache-* 2>/dev/null)) +cacheDirs=$(ls -d $BAL_CENTRAL_DIR/cache-* 2>/dev/null) || true for dir in "${cacheDirs[@]}"; do [ -d "$dir" ] && rm -r "$dir" done diff --git a/examples/calculate_workbook_application.bal b/examples/calculate_workbook_application.bal deleted file mode 100644 index 6feb4ca..0000000 --- a/examples/calculate_workbook_application.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->calculateWorkbookApplication(workbookIdOrPath, excel:FULL); - if !(response is error) { - log:printInfo("Workbook calculated"); - } -} diff --git a/examples/create_column.bal b/examples/create_column.bal deleted file mode 100644 index 26dfa41..0000000 --- a/examples/create_column.bal +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - json[][] values = [["a3"], ["c3"], ["aa"]]; - int columnIndex = 1; - - excel:Column|error response = excelClient->createColumn(workbookIdOrPath, "sheetName", "tableName", values, - columnIndex); - if (response is excel:Column) { - log:printInfo(response.toString()); - } -} diff --git a/examples/create_row.bal b/examples/create_row.bal deleted file mode 100644 index 83d7bc1..0000000 --- a/examples/create_row.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Row|error response = excelClient->createRow(workbookIdOrPath, "sheetName", "tableName", [[1, 2, 3]], 4); - if (response is excel:Row) { - log:printInfo(response.toString()); - } -} diff --git a/examples/delete_chart.bal b/examples/delete_chart.bal deleted file mode 100644 index b68ec63..0000000 --- a/examples/delete_chart.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->deleteChart(workbookIdOrPath, "worksheetName", "chartName"); - if !(response is error) { - log:printInfo("Chart deleted"); - } -} diff --git a/examples/delete_column.bal b/examples/delete_column.bal deleted file mode 100644 index 29e9795..0000000 --- a/examples/delete_column.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->deleteColumn(workbookIdOrPath, "worksheetName", "tableName", 1); - if !(response is error) { - log:printInfo("Column deleted"); - } -} diff --git a/examples/delete_row.bal b/examples/delete_row.bal deleted file mode 100644 index 2e0bc49..0000000 --- a/examples/delete_row.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->deleteRow(workbookIdOrPath, "worksheetName", "tableName", 1); - if !(response is error) { - log:printInfo("Row deleted"); - } -} diff --git a/examples/delete_table.bal b/examples/delete_table.bal deleted file mode 100644 index 8d8d0c5..0000000 --- a/examples/delete_table.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->deleteTable(workbookIdOrPath, "worksheetName", "tableName"); - if !(response is error) { - log:printInfo("Table deleted"); - } -} diff --git a/examples/delete_worksheet.bal b/examples/delete_worksheet.bal deleted file mode 100644 index f83fea0..0000000 --- a/examples/delete_worksheet.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->deleteWorksheet(workbookIdOrPath, "worksheetName"); - if !(response is error) { - log:printInfo("Worksheet deleted"); - } -} diff --git a/examples/get_cell.bal b/examples/get_cell.bal deleted file mode 100644 index 9d4d3bf..0000000 --- a/examples/get_cell.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Cell|error response = excelClient->getCell(workbookIdOrPath, "worksheetName", 3, 7); - if (response is excel:Cell) { - log:printInfo(response.toString()); - } -} diff --git a/examples/get_chart.bal b/examples/get_chart.bal deleted file mode 100644 index b40aaea..0000000 --- a/examples/get_chart.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Chart|error response = excelClient->getChart(workbookIdOrPath, "sheetName", "chartName"); - if (response is excel:Chart) { - log:printInfo(response.toString()); - } -} diff --git a/examples/get_chart_image .bal b/examples/get_chart_image .bal deleted file mode 100644 index 3271a05..0000000 --- a/examples/get_chart_image .bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - string|error response = excelClient->getChartImage(workbookIdOrPath, "worksheetName", "chartName"); - if (response is string) { - log:printInfo(response.toString()); - } -} diff --git a/examples/get_table.bal b/examples/get_table.bal deleted file mode 100644 index 50ad2a5..0000000 --- a/examples/get_table.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Table|error response = excelClient->getTable(workbookIdOrPath, "sheetName", "tableName"); - if (response is excel:Table) { - log:printInfo(response.toString()); - } -} diff --git a/examples/get_workbook_application.bal b/examples/get_workbook_application.bal deleted file mode 100644 index da5ea56..0000000 --- a/examples/get_workbook_application.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:WorkbookApplication|error response = excelClient->getWorkbookApplication(workbookIdOrPath); - if (response is excel:WorkbookApplication) { - log:printInfo(response.toString()); - } -} diff --git a/examples/get_worksheet.bal b/examples/get_worksheet.bal deleted file mode 100644 index 979bbce..0000000 --- a/examples/get_worksheet.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Worksheet|error response = excelClient->getWorksheet(workbookIdOrPath, "worksheetName"); - if (response is excel:Worksheet) { - log:printInfo(response.toString()); - } -} diff --git a/examples/income-expense-tracker/.devcontainer.json b/examples/income-expense-tracker/.devcontainer.json new file mode 100644 index 0000000..22579f9 --- /dev/null +++ b/examples/income-expense-tracker/.devcontainer.json @@ -0,0 +1,4 @@ +{ + "image": "ballerina/ballerina-devcontainer:2201.8.0-20230830-220400-8a7556d8", + "extensions": ["WSO2.ballerina"], +} diff --git a/examples/income-expense-tracker/.gitignore b/examples/income-expense-tracker/.gitignore new file mode 100644 index 0000000..7512ebe --- /dev/null +++ b/examples/income-expense-tracker/.gitignore @@ -0,0 +1,3 @@ +target +generated +Config.toml diff --git a/examples/income-expense-tracker/Ballerina.toml b/examples/income-expense-tracker/Ballerina.toml new file mode 100644 index 0000000..30ab879 --- /dev/null +++ b/examples/income-expense-tracker/Ballerina.toml @@ -0,0 +1,8 @@ +[package] +org = "wso2" +name = "income_expense_tracker" +version = "0.1.0" +distribution = "2201.8.0-20230830-220400-8a7556d8" + +[build-options] +observabilityIncluded = true diff --git a/examples/income-expense-tracker/main.bal b/examples/income-expense-tracker/main.bal new file mode 100644 index 0000000..f851f28 --- /dev/null +++ b/examples/income-expense-tracker/main.bal @@ -0,0 +1,55 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. licenses this file to you under the Apache License, +// Version 2.0 (the "License"); you may not use this file except +// in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +import ballerina/http; +import ballerina/os; +import ballerinax/microsoft.excel; + +configurable string clientId = os:getEnv("CLIENT_ID"); +configurable string clientSecret = os:getEnv("CLIENT_SECRET"); +configurable string refreshToken = os:getEnv("REFRESH_TOKEN"); +configurable string refreshUrl = os:getEnv("REFRESH_URL"); +configurable string workbookIdOrPath = os:getEnv("WORKBOOK_PATH"); + +public function main() returns error? { + + excel:Client excelClient = check new ({ + auth: { + clientId: clientId, + clientSecret: clientSecret, + refreshToken: refreshToken, + refreshUrl: refreshUrl + } + }); + + excel:Session session = check excelClient->createSession(workbookIdOrPath, {persistChanges: true}); + string sessionId = session.id; + + http:Response _ = check excelClient->deleteWorksheet(workbookIdOrPath, "sheetName", sessionId); + + excel:Worksheet _ = check excelClient->addWorksheet(workbookIdOrPath, {name: "sheetName"}, sessionId); + + excel:Table tableValue = check excelClient->addWorksheetTable(workbookIdOrPath, "sheetName", {address: "A1:C4"}, sessionId); + string tableName = tableValue.name; + + excel:Row _ = check excelClient->addWorksheetTableRow(workbookIdOrPath, "sheetName", tableName, {values: [["Year", "Income($)", "Expense($)"], [2020,5000,4000], [2021,7000,3000], [2022,3000,5000]]}, sessionId); + + excel:Chart _ = check excelClient->addChart(workbookIdOrPath, "sheetName", {'type: "ColumnStacked", sourceData: "A1:C3", seriesBy: "Auto"}); + + http:Response _ = check excelClient->deleteWorksheetTable(workbookIdOrPath, "sheetName", tableName, sessionId); + + http:Response _ = check excelClient->deleteWorksheet(workbookIdOrPath, "sheetName", sessionId); +} diff --git a/examples/list_charts.bal b/examples/list_charts.bal deleted file mode 100644 index 0a016a7..0000000 --- a/examples/list_charts.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Chart[]|error response = excelClient->listCharts(workbookIdOrPath, "worksheetName"); - if (response is excel:Chart[]) { - log:printInfo(response[0].toString()); - } -} diff --git a/examples/list_columns.bal b/examples/list_columns.bal deleted file mode 100644 index c9f63dc..0000000 --- a/examples/list_columns.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Column[]|error response = excelClient->listColumns(workbookIdOrPath, "worksheetName", "tableName"); - if (response is excel:Column[]) { - log:printInfo(response[0].toString()); - } -} diff --git a/examples/list_rows.bal b/examples/list_rows.bal deleted file mode 100644 index 3447fd5..0000000 --- a/examples/list_rows.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Row[]|error response = excelClient->listRows(workbookIdOrPath, "worksheetName", "tableName"); - if (response is excel:Row[]) { - log:printInfo(response[0].toString()); - } -} diff --git a/examples/list_tables.bal b/examples/list_tables.bal deleted file mode 100644 index 64b1b12..0000000 --- a/examples/list_tables.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Table[]|error response = excelClient->listTables(workbookIdOrPath); - if (response is excel:Table[]) { - log:printInfo(response[0].toString()); - } -} diff --git a/examples/list_worksheets.bal b/examples/list_worksheets.bal deleted file mode 100644 index 3fe6911..0000000 --- a/examples/list_worksheets.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Worksheet[]|error response = excelClient->listWorksheets(workbookIdOrPath); - if (response is excel:Worksheet[]) { - log:printInfo(response[0].toString()); - } -} diff --git a/examples/reset_chart_image.bal b/examples/reset_chart_image.bal deleted file mode 100644 index 07231de..0000000 --- a/examples/reset_chart_image.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->resetChartData(workbookIdOrPath, "worksheetName", "chartName", "A1:B3", excel:AUTO); - if !(response is error) { - log:printInfo("Chart reset"); - } -} diff --git a/examples/set_chart_position.bal b/examples/set_chart_position.bal deleted file mode 100644 index bbb0e00..0000000 --- a/examples/set_chart_position.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - error? response = excelClient->setChartPosition(workbookIdOrPath, "worksheetName", "chartName", "D3"); - if !(response is error) { - log:printInfo("Chart position set"); - } -} diff --git a/examples/update_chart.bal b/examples/update_chart.bal deleted file mode 100644 index aa6aed2..0000000 --- a/examples/update_chart.bal +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Chart updateChart = { - height: 99, - left: 99 - }; - - excel:Chart|error response = excelClient->updateChart(workbookIdOrPath, "worksheetName", "chartName", - updateChart); - if (response is excel:Chart) { - log:printInfo(response.toString()); - } -} diff --git a/examples/update_column.bal b/examples/update_column.bal deleted file mode 100644 index 026bca1..0000000 --- a/examples/update_column.bal +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Column|error response = excelClient->updateColumn(workbookIdOrPath, "sheetName", "tableName", 1, - name = "columnName"); - if (response is excel:Column) { - log:printInfo(response.toString()); - } -} diff --git a/examples/update_row.bal b/examples/update_row.bal deleted file mode 100644 index 6755a15..0000000 --- a/examples/update_row.bal +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Row|error response = excelClient->updateRow(workbookIdOrPath, "sheetName", "tableName", 4, [[(), (), 8]]); - if (response is excel:Row) { - log:printInfo(response.toString()); - } -} diff --git a/examples/update_table.bal b/examples/update_table.bal deleted file mode 100644 index 159b751..0000000 --- a/examples/update_table.bal +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -excel:Worksheet sheet = {position: 1}; - -public function main() { - excel:Worksheet|error response = excelClient->updateWorksheet(workbookIdOrPath, "worksheetName", sheet); - if (response is excel:Worksheet) { - log:printInfo(response.toString()); - } -} diff --git a/examples/update_worksheet.bal b/examples/update_worksheet.bal deleted file mode 100644 index 24a2308..0000000 --- a/examples/update_worksheet.bal +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -// -// WSO2 Inc. licenses this file to you under the Apache License, -// Version 2.0 (the "License"); you may not use this file except -// in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -import ballerina/log; -import ballerinax/microsoft.excel; - -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; -configurable string refreshUrl = ?; -configurable string workbookIdOrPath = ?; - -excel:ConnectionConfig configuration = { - auth: { - clientId: clientId, - clientSecret: clientSecret, - refreshToken: refreshToken, - refreshUrl: refreshUrl - } -}; - -excel:Client excelClient = check new (configuration); - -public function main() { - excel:Worksheet sheet = {position: 1}; - - excel:Worksheet|error response = excelClient->updateWorksheet(workbookIdOrPath, "worksheetName", sheet); - if (response is excel:Worksheet) { - log:printInfo(response.toString()); - } -}